Пример #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Session["isLogin"] != "ok")
     {
         Response.Redirect("../Login.aspx");
     }
     if (Request.QueryString["id"] != null)
     {
         strid = Request.QueryString["id"].ToString();
         Maticsoft.BLL.NewPort.Table_specialFundRecord bll = new Maticsoft.BLL.NewPort.Table_specialFundRecord();
         bll.Delete(strid);
     }
 }