摘要:use master;set nocount on;if DB_ID('Performance') is nullcreate database Performance;gouse Performance;goset nocount on;if OBJECT_ID('dbo.Nums', 'U') is not nulldrop table dbo.nums;create table dbo.nums(n int not null primary key );declare @max as int, @rc as int;set @max = 5
阅读全文
摘要:@echo offnetsh ipsec static delete allset ipsec_policy=tudouset ipsec_filterlistname=tudou adsset ipsec_actionname=denyset ip_block_list=119.167.203.@echo 1 netsh ipsec static add policy name="%ipsec_policy%"netsh ipsec static add policy name="%ipsec_policy%"@echo 2 netsh ipsec s
阅读全文
摘要:1. “C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir” doesn’t work. the web app work in root but does’t work in vdir; my aspnet setup should be correct 2. turn windows features on...
阅读全文
摘要:突然发现 border : 2px solid #ff0000;在IE9 不好使了。。。改成table .green{border-style: solid;border-width: 2px;border-color: Green;}
阅读全文
摘要:<% ... %> 用来运行一般性代码. http://msdn.microsoft.com/en-us/library/ms178135(v=VS.100).aspx <% if (User.IsInRole("admin")) { %> You can see this<% } else { %> You are no admin fool!<%} %> <%= ... %>小段信息, 通常是...
阅读全文