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

C#编程

开发平台:

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 UDS.SubModule.CM.Stat
  12. {
  13. /// <summary>
  14. /// sellmancontact 的摘要说明。
  15. /// </summary>
  16. public class sellmancontact : System.Web.UI.Page
  17. {
  18. protected UDS.Inc.ControlSellmanContactHistory ControlSellmanContactHistory1;
  19. private void Page_Load(object sender, System.EventArgs e)
  20. {
  21. // 在此处放置用户代码以初始化页面
  22. if(!Page.IsPostBack)
  23. {
  24. ControlSellmanContactHistory1.SellmanID = (Request.QueryString["SellmanID"]==null)?0:Int32.Parse(Request.QueryString["Sellmanid"]);
  25. ControlSellmanContactHistory1.BeginTime = (Request.QueryString["Begintime"]==null)?DateTime.Now:DateTime.Parse(Request.QueryString["Begintime"]);
  26. ControlSellmanContactHistory1.EndTime = (Request.QueryString["Endtime"]==null)?DateTime.Now:DateTime.Parse(Request.QueryString["Endtime"]);
  27. ControlSellmanContactHistory1.Type = (Request.QueryString["type"]==null)?"":Request.QueryString["type"];
  28. }
  29. }
  30. #region Web Form Designer generated code
  31. override protected void OnInit(EventArgs e)
  32. {
  33. //
  34. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  35. //
  36. InitializeComponent();
  37. base.OnInit(e);
  38. }
  39. /// <summary>
  40. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  41. /// 此方法的内容。
  42. /// </summary>
  43. private void InitializeComponent()
  44. {    
  45. this.Load += new System.EventHandler(this.Page_Load);
  46. }
  47. #endregion
  48. }
  49. }