📄 gw_delectdocument.aspx.cs
字号:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using COM.OA.Entity;
using COM.OA.BLL;
using System.Collections.Generic;
public partial class gw_gw_delectdocument : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
COM.OA.Entity.users loginuser = Session["loginuser"] as COM.OA.Entity.users;
if (loginuser == null)
{
Response.Write("<script language='javascript'>parent.document.location.href='../login.aspx'</script>");
}
else
{
//取传递的参数docid
int docid = Int32.Parse(this.Request.QueryString["docid"].ToString());
int flag = documentBLL.Delete(docid);
if (flag == 0)
{
this.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", "<script>alert('公文删除失败!!');</script>");
}
this.Response.Write(string.Format(GetRedirect.WINALERT, "公文删除成功!"));
this.Response.Write(string.Format(GetRedirect.REDIRECT, "gw_sendnote.aspx"));
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -