Exemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Permissions.ComRedirect(Page, Permissions.redirUrl);
     if (Request.QueryString["type"] != null)
     {
         if (Request.QueryString["ID"] != "")
         {
             int ID = int.Parse(Request.QueryString["ID"]);
             this.DetailSpan.InnerHtml = ReleaseBLL.ChongHongBeizhu(ID);
         }
     }
     else
     {
         if (Request.QueryString["ID"] != "")
         {
             int ID = int.Parse(Request.QueryString["ID"]);
             this.DetailSpan.InnerHtml = ReleaseBLL.DeductReason(ID);
         }
     }
 }