Login.aspx.cs 562 B

12345678910111213141516171819202122232425
  1. using BizCom;
  2. using Castle.ActiveRecord;
  3. using SiteCore;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Web;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using Utils;
  11. public partial class bdrr_Login : System.Web.UI.Page
  12. {
  13. protected void Page_Load(object sender, EventArgs e)
  14. {
  15. if (!IsPostBack)
  16. {
  17. Session["vCode"] = null;
  18. if (Session["lerr"] != null)
  19. hCT.Value = Session["lerr"].ToString();
  20. labIp.Text = WebHelper.GetIP();
  21. }
  22. }
  23. }