Index.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using 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 System.Data.SqlClient;
  12. public partial class EmailSystem_Index : System.Web.UI.Page
  13. {
  14. //该源码下载自www.51aspx.com(51aspx.com)
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         LoginLogic.MatchLoad("../", "EmailSystem_Index");
  18. if(!Page.IsPostBack)
  19. {   ///获取系统配置信息
  20. BindWebMailProfile();
  21. }
  22.     }
  23. private void BindWebMailProfile()
  24. {
  25. if(Session["Profile"] == null)
  26. {
  27. ///获取系统配置信息
  28. IMail mail = new Mail();
  29. SqlDataReader dr = mail.GetWebMailProfile();
  30. if(dr.Read())
  31. {
  32. WebMailProfile profile = new WebMailProfile();
  33. profile.UserName = dr["UserName"].ToString();
  34. profile.AliasName = dr["AliasName"].ToString();
  35. profile.Email = dr["Email"].ToString();
  36. profile.MailServerIP = dr["MailServerIP"].ToString();
  37. profile.MailServerPort = Int32.Parse(dr["MailServerPort"].ToString());
  38. ///保存邮件配置属性到应用程序上下文中
  39. HttpContext.Current.Application.Add("WebMailProfile",profile);
  40. }
  41. dr.Close();
  42. Session["Profile"] = "Profile";
  43. }
  44. }
  45. }