Esempio n. 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            BrCode bcode = new BrCode();

            string code = Request["code"].ToString().Trim();

            if (string.IsNullOrEmpty(code))
            {
                Response.Write("false¬false");
                return;
            }
            string anwser = bcode.GetCodeExist(code);

            if (anwser == "error")
            {
                Response.Write("false¬false");
                return;
            }
            Session["codeDiscount"] = anwser;


            Response.Write("true¬" + anwser);
            return;
        }