温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:无忧劳保库存系统源码
当前文件:
Labor/employeesQ.aspx.cs,打开代码结构图
Labor/employeesQ.aspx.cs,打开代码结构图1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Collections; 5
using System.Web; 6
using System.Web.Security; 7
using System.Web.UI; 8
using System.Web.UI.WebControls; 9
using System.Web.UI.WebControls.WebParts; 10
using System.Web.UI.HtmlControls; 11
using SqlHelper; 12
public partial class employeesQ : System.Web.UI.Page 13
{ 14
Helper he = new Helper(); 15
16
protected void Page_Load(object sender, EventArgs e) 17
{ 18
if (!IsPostBack) 19
{ 20
if (he.IsAdmin(Session["username"].ToString())) 21
{ 22
; 23
} 24
else 25
{ 26
Response.Write("<script>window.showModalDialog('IsAdmin.aspx','','resizable:yes;scroll:yes;status:no;dialogWidth=320px;dialogHeight=230px;center=yes;help=no');</script>"); 27
28
UpdatePanel1.Visible = false; 29
30
return; 31
} 32
} 33
} 34
protected void BtnQuery_Click(object sender, EventArgs e) 35
{ 36
if (!he.QueryEmp(DrL.SelectedValue, TxtInfo.Text.Trim())) 37
{ 38
Label1.Text = "没有查询到相应的结果"; 39
} 40
else 41
{ 42
Label1.Text = ""; 43
44
GridView1.DataSource = he.EmpBindInfo(DrL.SelectedValue, TxtInfo.Text.Trim()); 45
46
GridView1.DataBind(); 47
} 48
} 49
} 50




Helper he 
}
}