摘要:
当输入法打开时,判断input只能输入数字时,input 的onkeydown事件不触发。Solution: input style="ime-mode:Disabled;" onkeydown="函数" /style="ime-mode:Disabled;"这个样式可以关闭输入法。 阅读全文
摘要:
1。Mysql默认情况下不区分大小写。如何设置区分大小写: my.ini:在mysqld节下加入下面一行 set-variable=lower_case_table_names=0 (0:大小写敏感;1:大小写不敏感)重启一下MySql服务。2。执行sql:;+ 回车。3。show databases;4. use database name;5. show tables;6. create table table_Name(id int, name varchar(20));..... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--declare@Temptable(Codevarchar(10),IDint,SIntint)insertinto@Temp(Code,ID,SInt)select'01',1,3unionselect'01',2,3unionselect'01',2,3unionselect'02',1,3unionselect'02',3,5unionselect'02',2,6unionselect'03 阅读全文
摘要:
今天我在windows 2000系统下面安装fireshot后,总是提示FireShot needs XMLLITE.DLL for execution, please install it first.查看了system32下面确实没有这个DLL。在网上查了查,最终找到了一个可以使用的xmillite.dll。把这个DLL放到:WINNT\system32下面,然后卸载Fireshot, 重新安装,it is OK.xmillite.dll下载地址:http://files.cnblogs.com/lfzwenzhu/xmllite.zip. 阅读全文
摘要:
Hyperlink --> A Website on the Internet.Today, I use Hyperlink property. I find that the property is not work.我检查了报表的属性,发现了一个属性。Report Options --> Create Group Tree当这个属性check时,有的报表不能使用Hyperlink的... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--selecto.nameasTableName,c.[name],s.nameascolType,co.lengthfromsys.columnscinnerjoinsys.typessonc.use... 阅读全文
摘要:
最近这段时间, 我们客户总是反映我们的软件慢。找一些资料监测性能,从而判断出是哪里的问题。在MSDN上找到了一篇关于若干监测asp.net的文章,记录下来:ASP.NET Performance Monitoring, and When to Alert Administratorshttp://msdn.microsoft.com/en-us/library/ms972959.aspx 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Web;usingSystem.Web.Security;usin... 阅读全文
摘要:
七子之歌是 闻一多于1925年7月发表的爱国组诗《七子之歌》谱曲而来。按顺序分别为《七子之歌·澳门》、《七子之歌·香港》、《七子之歌·台湾》、《七子之歌·威海卫》、《七子之歌·广州湾》、《七子之歌·九龙》、《七子之歌·旅顺大连》七首 阅读全文
摘要:
参考微软的官网:http://msdn.microsoft.com/zh-cn/library/950xf363%28VS.80%29.aspx以前没有注意到pages中有一个设置属性:maintainScrollPositionOnPostBack指定在页回发到服务器上时,是否将用户返回到客户端浏览器中的同一位置。还是需要多看帮助文档了!! 阅读全文
摘要:
引自:http://www.bluerobot.com/web/css/center1.html Centering: Auto-width Margins This box is horizontally centered by setting its right and left margin widths to "auto". This is the preferred way to ... 阅读全文
摘要:
最近为了监测网站的运行情况,发现iis的log可以存储在数据库中。具体的设置方法可以参考微软的官方网站: http://support.microsoft.com/kb/245243/zh-cn 阅读全文
摘要:
1。sql代码格式化工具:SQL Pretty PrinterLinks 下载链接:http://www.dpriver.com/dlaction.php在线版本(不支持中文):http://www.dpriver.com/pp/sqlformat.htm 阅读全文
摘要:
coalesce(表达式)相当于case when 表达式 is not null then 表达式 when 表达式1 is not null then 表达式1 else nullend 阅读全文
摘要:
摘自:http://www.ezloo.com/2008/12/metabase_iis_performance.html Metabase.xml文件是IIS的设置文件,每个网站已经IIS的设置都在这个下面,所以在修改这个文件之前要把这个文件备份一下。这个文件在C:\WINDOWS\system32\inetsrv\Metabase.xml,前篇的启用IIS的静态压缩也可以在文件下设置,也可以在... 阅读全文