摘要:
--is_broker_enabled为0未启用,为1启用SELECT name,is_broker_enabled FROM sys.databases WHERE name = 'DBNAME'ALTER DATABASE DbName SET NEW_BROKER WITH ROLLBACK 阅读全文
摘要:
//解决方法: //引入命名空间: using System.Security.Cryptography.X509Certificates; using System.Net.Security; //定义方法: private static bool RemoteCertificateValidate(object sender, X509Certificate cert, X509Ch... 阅读全文
摘要:
/*path参数:表示cookie所在的目录,.net默认为/(根目录)。在同一个服务器上有目录如下:/test/,/test/aa/,/test /bb/,现设一个cookie1的path为/test/,cookie2的path为/test/aa/,那么test下的所有页面都可以访问到 cookie1,而/test/和/test/dd/的子页面不能访问cookie2。这是因为cookie能让其... 阅读全文