在类库中使用Response


 类库方法代码:

public static void CheckUserName(System.Web.UI.Page parent)
        
{
            HttpResponse Response 
= parent.Response; 

            System.Security.Principal.IPrincipal p 
= HttpContext.Current.User;
            
if(p.Identity.Name.ToLower() != "yan")
            
{
                Response.Redirect(
"LowerPower.aspx");                
            }


        }

  页面调用:
ConfirmBase.CheckUserName(this.Page);
posted on 2006-02-18 16:16  yell  阅读(379)  评论(0编辑  收藏  举报