Exemple #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string fid = Request.QueryString["fid"];
            string uid = Request.QueryString["uid"];
            string mac = Request.QueryString["mac"];
            string per = Request.QueryString["percent"];

            if (!string.IsNullOrEmpty(fid) &&
                !string.IsNullOrEmpty(uid) &&
                !string.IsNullOrEmpty(mac) &&
                !string.IsNullOrEmpty(per)
                )
            {
                DnFolder.Update(fid, uid, mac, per);
            }
        }