ClientHistoryContact.aspx.cs
上传用户:cha0314
上传日期:2014-03-02
资源大小:12522k
文件大小:3k
源码类别:

C#编程

开发平台:

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. namespace UDS.SubModule.CM
  13. {
  14. /// <summary>
  15. /// ClientHistoryContact 的摘要说明。
  16. /// </summary>
  17. public class ClientHistoryContact : System.Web.UI.Page
  18. {
  19. protected System.Web.UI.WebControls.Literal ltl_ClientName;
  20. protected System.Web.UI.WebControls.Literal ltl_UpdateTime;
  21. protected System.Web.UI.WebControls.Literal ltl_ClientShortName;
  22. protected System.Web.UI.WebControls.Literal ltl_Birthday;
  23. protected System.Web.UI.WebControls.Literal ltl_BargainPrognosis;
  24. protected System.Web.UI.WebControls.Literal ltl_SellPhase;
  25. protected System.Web.UI.WebControls.Literal ltl_Fee;
  26. protected System.Web.UI.WebControls.Literal ltl_AddMan;
  27. protected System.Web.UI.WebControls.Literal ltl_ContactTimes;
  28. protected UDS.Inc.ControlClientContactHistory ControlClientContactHistory1;
  29. private void Page_Load(object sender, System.EventArgs e)
  30. {
  31. if(!Page.IsPostBack)
  32. {
  33. UDS.Components.CM cm = new UDS.Components.CM();
  34. int clientid = Int32.Parse((Request.QueryString["ClientID"]==null)||(Request.QueryString["ClientID"]=="")?"0":Request.QueryString["ClientID"].ToString());
  35. UDS.Components.ClientInfo client = cm.GetClientAllInfo(clientid);
  36. ltl_ClientName.Text = client.ClientName;
  37. ltl_ClientShortName.Text = client.ClientShortName;
  38. ltl_UpdateTime.Text = client.UpdateTime.ToShortDateString();
  39. ltl_Birthday.Text = client.Birthday.ToShortDateString();
  40. ltl_ContactTimes.Text = client.ContactTimes.ToString();
  41. ltl_SellPhase.Text = client.SellPhase;
  42. ltl_BargainPrognosis.Text = client.BargainPrognosis;
  43. ltl_Fee.Text = client.Fee.ToString();
  44. //显示销售人员
  45. UDS.Components.Staff staff = new UDS.Components.Staff();
  46. SqlDataReader dr_staff = staff.GetStaffInfo(client.AddManID);
  47. while(dr_staff.Read())
  48. {
  49. ltl_AddMan.Text = dr_staff["realname"].ToString();
  50. }
  51. dr_staff.Close();
  52. dr_staff=null;
  53. ControlClientContactHistory1.ClientID = clientid;
  54. ControlClientContactHistory1.BindData();
  55. }
  56. }
  57. #region Web Form Designer generated code
  58. override protected void OnInit(EventArgs e)
  59. {
  60. //
  61. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  62. //
  63. InitializeComponent();
  64. base.OnInit(e);
  65. }
  66. /// <summary>
  67. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  68. /// 此方法的内容。
  69. /// </summary>
  70. private void InitializeComponent()
  71. {    
  72. this.Load += new System.EventHandler(this.Page_Load);
  73. }
  74. #endregion
  75. }
  76. }