在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、属性
2、位置httpCookies-> configuration-> system.web //该元素放于<system.web>下的<configuration>节点下 3、示例 <httpCookies httpOnlyCookies="false" //是否仅仅服务器能够访问 requireSSL="false" //不需要安全套接字层 (SSL) 通信的值 domain="" /> //域名为当前域名 4、编程访问节点 // <httpCookies httpOnlyCookies="false" requireSSL="false" domain="" /> HttpCookiesSection HS = (HttpCookiesSection)WebConfigurationManager.OpenWebConfiguration("/").GetSection("system.web/httpCookies"); Response.Write(HS.HttpOnlyCookies);
|
请发表评论