using System; using System.Collections; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text; using System.IO; using System.Net; using DSWeb.Models; using DSWeb.EntityDA; using DSWeb.Filter; using DSWeb.Authority; using System.Reflection; namespace DSWeb { public partial class _Default2 : PageBase { private string strUserID; private string strShowName; protected void Page_Load(object sender, EventArgs e) { if (Session["USERID"] != null) { strUserID = Session["USERID"].ToString(); } if (Session["SHOWNAME"] != null) { strShowName = Session["SHOWNAME"].ToString(); } if (strUserID != null) { } else { Response.Redirect("login.aspx"); } } /// /// } }