Search.aspx.cs
上传用户:jdb8708888
上传日期:2013-05-29
资源大小:19971k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12. using UDS.Components;
  13. namespace UDS.SubModule.Staff
  14. {
  15. /// <summary>
  16. /// Search 的摘要说明。
  17. /// </summary>
  18. public class Search : System.Web.UI.Page
  19. {
  20. protected System.Web.UI.WebControls.TextBox tbx_Name;
  21. protected System.Web.UI.WebControls.DropDownList ddl_Position;
  22. protected System.Web.UI.WebControls.LinkButton lbtn_Others;
  23. protected System.Web.UI.WebControls.TextBox tbx_Mobile;
  24. protected System.Web.UI.WebControls.TextBox tbx_Email;
  25. protected System.Web.UI.WebControls.DropDownList ddl_Gender;
  26. protected System.Web.UI.WebControls.Button btn_Search;
  27. protected System.Web.UI.HtmlControls.HtmlTable table_Other;
  28. private void Page_Load(object sender, System.EventArgs e)
  29. {
  30. if(!Page.IsPostBack)
  31. {
  32. table_Other.Visible = false;
  33. BindPosition();
  34. }
  35. }
  36. #region Web 窗体设计器生成的代码
  37. override protected void OnInit(EventArgs e)
  38. {
  39. //
  40. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  41. //
  42. InitializeComponent();
  43. base.OnInit(e);
  44. }
  45. /// <summary>
  46. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  47. /// 此方法的内容。
  48. /// </summary>
  49. private void InitializeComponent()
  50. {    
  51. this.lbtn_Others.Click += new System.EventHandler(this.lbtn_Others_Click);
  52. this.Load += new System.EventHandler(this.Page_Load);
  53. }
  54. #endregion
  55. private void BindPosition()
  56. {
  57. Database db = new Database();
  58. SqlDataReader dr;
  59. db.RunProc("SP_Ext_GetPosition",out dr);
  60. ddl_Position.DataSource = dr;
  61. ddl_Position.DataTextField = "Position_Name";
  62. ddl_Position.DataValueField = "Position_ID";
  63. ddl_Position.DataBind();
  64. ddl_Position.Items.Insert(0,new ListItem("全部","0"));
  65. }
  66. private void lbtn_Others_Click(object sender, System.EventArgs e)
  67. {
  68. table_Other.Visible = !table_Other.Visible;
  69. if(table_Other.Visible == true)
  70. {
  71. lbtn_Others.Text = "其它查询<<<";
  72. }
  73. else
  74. {
  75. lbtn_Others.Text = "其它查询>>>";
  76. }
  77. }
  78. }
  79. }