index.aspx.cs
上传用户:clhb88
上传日期:2009-09-26
资源大小:3468k
文件大小:2k
源码类别:

医药行业

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. namespace 医院管理系统
  12. {
  13. /// <summary>
  14. /// index 的摘要说明。
  15. /// </summary>
  16. public class index : System.Web.UI.Page
  17. {
  18. protected System.Web.UI.WebControls.TextBox Tname;
  19. protected System.Web.UI.WebControls.TextBox Tpwd;
  20. protected System.Web.UI.WebControls.Button Button1;
  21. protected System.Web.UI.WebControls.Button Button2;
  22. protected System.Web.UI.WebControls.Image Image1;
  23. Cpass cpa = new Cpass();
  24. private void Page_Load(object sender, System.EventArgs e)
  25. {
  26. //Session["usename"] =Tname.Text;// 在此处放置用户代码以初始化页面
  27. }
  28. #region Web 窗体设计器生成的代码
  29. override protected void OnInit(EventArgs e)
  30. {
  31. //
  32. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  33. //
  34. InitializeComponent();
  35. base.OnInit(e);
  36. }
  37. /// <summary>
  38. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  39. /// 此方法的内容。
  40. /// </summary>
  41. private void InitializeComponent()
  42. {    
  43. this.Button1.Click += new System.EventHandler(this.Button1_Click);
  44. this.Button2.Click += new System.EventHandler(this.Button2_Click);
  45. this.Load += new System.EventHandler(this.Page_Load);
  46. }
  47. #endregion
  48. private void Button1_Click(object sender, System.EventArgs e)
  49. {
  50. if(cpa.CH(Tname.Text,Tpwd.Text,"")=="Nopasscheck")
  51. {
  52. Response.Write("<script language=javascript>alert('你的用户名或密码有误!')</script>") ;
  53. //Response.Redirect("index.aspx");
  54. }
  55. else
  56. {
  57. Session["usename"] =Tname.Text; //传递用户名和密码值
  58. Session["pwds"] =Tpwd.Text;
  59. Response.Redirect("webmenu.aspx");
  60. }
  61. }
  62. private void Button2_Click(object sender, System.EventArgs e)
  63. {
  64.   Tname.Text="";
  65. Tpwd.Text ="";
  66. }
  67. }
  68. }