请高手们进来帮个忙
我用的是.net2005,我做了一个页面IsUser.aspxpublic partial class IsUser : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void UserName()
{
if (Session["UserName"].ToString() == null || Session["UserName"].ToString() != null && Session["UserName"].ToString() == "")
{
//可能非有意的引用比较;若要获取值比较,请将左边转为类型string
//Response.Redirect ("../index.aspx");
Response.Write("<script language=javascript>alert('你不是管理员!');location.href='Default.aspx';</script>");
return;
}
}
}
我现在想在其他的页面调用username这个方法,怎么写啊, --------------------编程问答-------------------- 需要把类放到App_code里面 --------------------编程问答-------------------- 我现在把类放在app_code里面了,怎么提示,“当前上下文中不存在session”
补充:.NET技术 , ASP.NET