C#中的Intellisense是大小写敏感的
[ 2005-12-07 09:38:45 | 作者: admin ]
C#中的Intellisense是大小写敏感的。为什么在辅助人们查找未知信息和不记得的信息的搜索特性中实现大小写敏感性是我无法理解的。更糟的是,它的大小写敏感性还是不一致的。
提供两种散列加密算法:MD5、SHA1。
[ 2005-12-07 09:31:12 | 作者: admin ]
如果想大小写不敏感的话,那么就先把明文转成大写。
SHA1算法:
result=FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordString ,"SHA1");
MD5算法
result=FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordString ,"MD5");
SHA1算法:
result=FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordString ,"SHA1");
MD5算法
result=FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordString ,"MD5");
str.Replace( Convert.ToChar(31), '@' )
模仿AS效果的导航菜单
[ 2005-11-27 17:46:53 | 作者: admin ]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>模仿as效果的导航菜单</title>
<style type="text/css">
<!--
a:link,a:visited { text-decoration: none; color: #666666 }
a:hover { text-decoration: underline }
#hor1 {
position:absolute;
left:320px;
top:20px;
width:220px;
height:20px;
z-index:1;
background-color: #999900;
}
#hor2 {
position:absolute;
...
阅读全文…
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>模仿as效果的导航菜单</title>
<style type="text/css">
<!--
a:link,a:visited { text-decoration: none; color: #666666 }
a:hover { text-decoration: underline }
#hor1 {
position:absolute;
left:320px;
top:20px;
width:220px;
height:20px;
z-index:1;
background-color: #999900;
}
#hor2 {
position:absolute;
...
阅读全文…
10个必备的VS.NET插件 和 10个.NET开发的小工具
[ 2005-11-21 22:01:43 | 作者: admin ]
TestDriven.NET
GhostDoc
Paster
CodeKeep
PInvoke.NET
VSWindowManager PowerToy
WSContractFirst
VSMouseBindings
CopySourceAsHTML
Cache Visualizer
原文: Visual Studio Add-Ins Every Developer Should Download Now
NUnit to write unit tests
NDoc to create code documentation
NAnt to build your solutions
CodeSmith to generate code
FxCop to police your code
Snippet Compiler ...
阅读全文…
让IIS服务器支持中文文件名
[ 2005-11-18 16:14:46 | 作者: admin ]
有时候用iis的浏览项目的时候,如果有中文文件名直接下载有时就找不到该文件,当然你用flashget就可以了,但如果有目录的就只能干瞪眼了。那就看看下面的办法让你的iis支持中文吧
开始运行:regedit
修改注册表,将[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\InetInfo\Parameters\FavorDBCS]
的值改为"0"即可
开始运行:regedit
修改注册表,将[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\InetInfo\Parameters\FavorDBCS]
的值改为"0"即可
asp.net报表解决方法
[ 2005-11-17 12:54:12 | 作者: admin ]
Csdn dotnet blog 专家群 masey
private string subTotal(int row ,int num)
{
string r = (row+1).ToString();
if( num == 0)//
{
return "=C"+r+"+F"+r+"-I"+r;
}
else
return "=E"+r+"+H"+r+"-K"+r;
}
private string sumTotal(string scol,int firstrow,int num){
string r = num.ToString();
...
阅读全文…
.NET Tips: 正确获取当前URL
[ 2005-11-17 09:13:49 | 作者: admin ]
.NET Tips: 正确获取当前URL
获取当前URL我一直使用HttpContext.Current.Request.Url.ToString(),今天Tinyfool指出我的一个Bug,调试发现,ToString()函数并不可靠。
如果当前URL为
http://localhost/search.aspx?user=tinyfool&tag=%BC%BC%CA%F5
通过HttpContext.Current.Request.Url.ToString()获取到的却是
http://localhost/search.aspx?user=tinyfool&tag=¼¼Êõ
这显然不对,怎么办?用HttpContext.Current.Request.Url.PathAndQuery好了,这个得到的正确的。:)
获取当前URL我一直使用HttpContext.Current.Request.Url.ToString(),今天Tinyfool指出我的一个Bug,调试发现,ToString()函数并不可靠。
如果当前URL为
http://localhost/search.aspx?user=tinyfool&tag=%BC%BC%CA%F5
通过HttpContext.Current.Request.Url.ToString()获取到的却是
http://localhost/search.aspx?user=tinyfool&tag=¼¼Êõ
这显然不对,怎么办?用HttpContext.Current.Request.Url.PathAndQuery好了,这个得到的正确的。:)