You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1007 B
C#
51 lines
1007 B
C#
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");
|
|
}
|
|
|
|
}
|
|
/// <summary>
|
|
///
|
|
|
|
}
|
|
|
|
} |