08 2004 档案
今天看了cctv网站上对亚洲杯决赛的报道,实在是有点不舒服。。。
摘要:http://www.cctv.com/news/sports/football/integrate/20040808/100018.shtml中国的媒体报道太不透明。。。
阅读全文
A Security Problem Caused by xp_cmdshell in SQL Server.
摘要:Today, one of my colleagues demonstrated how to use the extended stored procedure xp_cmdshell to activate the windows Guest account and clear the password of that account, and thenadd theGuest accou...
阅读全文
Creating recurive stored procedures in T-SQL.
摘要:In SQLServer, I tried to define a stored procedure to recursively invoke itself (See the following T-SQL statements). However, the maximum nesting level of recursion is 30 (Tested under SQL Server 200...
阅读全文
PageEvents of an aspx Page.
摘要:Page Events Summary Method PostBack Controls ...
阅读全文
How to enable SQL Debugging.
摘要:SQL Server has a built-inextended stored procedure,named sp_sdidebug, the permission towhich is necessary for a user tohave the capabilityof debugging stored procedures. To grant the permission, ...
阅读全文
Test Runner -- NUnit Add-in for Visual Studio 2003.
摘要:这个工具对许多人来说应该很熟悉,具体的可以访问TestRunner网站. http://www.mailframe.net/Products/TestRunner.htm 今天简单地用了一下,主要就是与其他的类似的NUnit插件相比界面稍微友好点: 而且可以进行调式,这个功能比较有用: (不过我试了一下,还是有些不方便,每次调式之前要restart the TestRunner proce...
阅读全文
反射可以通过FieldInfo.SetValue设置任何字段的值。
摘要:usingSystem; usingSystem.Reflection; usingSystem.Globalization; publicclassMyClass { privatestringmyString; publicMyClass() { myString="Oldvalue"; } strin...
阅读全文