remove 
Response.Cookies.Clear()

解决方案 »

  1.   

    谢谢思归大哥,我试一下.
    刚才那个问题问了一半,剩下的忘问了,很简单,就是在这个模块中如何控制调用这个模块的页面中的WEB控件?
    比如:label1.Visible = False
    在模块中如何使用?
      

  2.   

    it is not recommended, by tryPage p = (Page)System.Web.HttpContext.Current.Handler;
    Control c = p.FindControl("label1");
    c.Visible = false;
      

  3.   

    Imports System.Web
    模块中
    WithEvents checkuserdl As System.Web.UI.WebControls.Label
    然后就可以用了,不知道对不对?
      

  4.   

    no, the following only works in your page's superclassprotected WithEvents checkuserdl As System.Web.UI.WebControls.Label