如果客户端禁用cookie,那asp.net的form验证程序还能正常运行吗?
如果不行,要怎么解决?

解决方案 »

  1.   

    no, in this case, change your web.config to use cookieless sessionstate<configuration>
        <sessionState cookieless="true" timeout="20" />
    </configuration>see
    http://www.thecodeproject.com/aspnet/cookieless.asphttp://www.eggheadcafe.com/articles/20021016.asp
      

  2.   

    saucer大哥 已经说的很明白了
      

  3.   

    http://msdn.microsoft.com/library/chs/default.asp?url=/library/CHS/cpgenref/html/gngrfsessionstatesection.asp这里看关于sessionState的我也才看过!
      

  4.   

    Web.Config将数据加密后放置到客户端<input type=hidden name=asdf vlaue="">的控件里