rc_notedelete.aspx.cs
来自「OA自动化办公系统,就是OA自动化办公系统」· CS 代码 · 共 41 行
CS
41 行
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 rc_rc_notedelete : 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 tid = Int32.Parse(this.Request.QueryString["id"].ToString());
int flag = timeorderBLL.Delete(tid);
if (flag == 0)
{
this.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", "<script>alert('删除失败!!');</script>");
}
this.ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", "<script>alert('删除成功!!');</script>");
this.Response.Redirect("rc_notemanage.aspx");
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?