Пример #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string sUid = Request.QueryString["uid"].ToString();

            sUid = sUid.Replace(" ", "+");
            UserInfoBll usrBll = new UserInfoBll();

            usrBll.UpdateActivation(Convert.ToInt32(UtilityClass.Decrypt(sUid)));
        }
Пример #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (IsPostBack)
     {
         string sUid = Request.QueryString["uid"].ToString();
         sUid             = sUid.Replace(" ", "+");
         strUserId        = Convert.ToInt32(UtilityClass.Decrypt(sUid)).ToString();
         lblError.Visible = false;
     }
 }