| 12345678910111213141516171819202122232425 |
- using BizCom;
- using Castle.ActiveRecord;
- using SiteCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using Utils;
- public partial class bdrr_Login : System.Web.UI.Page
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!IsPostBack)
- {
- Session["vCode"] = null;
- if (Session["lerr"] != null)
- hCT.Value = Session["lerr"].ToString();
- labIp.Text = WebHelper.GetIP();
- }
- }
- }
|