posted @ 2009-01-08 16:19 X龙 阅读(315) 评论(0) 推荐(0) 编辑
摘要:
在构建Web应用程序时,会从窗体打开多个子窗体。 在有些软件中要验证用户是否有访问页面的权限,当用户在多重子窗体中操作时,由于某些原因(session超时、服务器重启等)断开了连接,些时用户得重新登录。 我的系统的处理方案是关闭所有的子窗体,再在主窗体中载入登入页面。 具体js代码:(我重Page页面继承一个PageBase类,再在PageBase中定义一个方法TestLogin进行验证,在Te... 阅读全文
摘要:
/***绘制简单百分比进度条*barId进度条span的ID*fPercent完成的百分数*strCaption标题*iHeight高度*iUnit最小单位*bgcolor背景颜色*border边框样式*cursor光标样式*/functionSimplePercent(barId,fPercent,strCaption,iHeight,iUnit,bgcolor,border,cursor){varpBar=document.all(barId);if(pBar){pBar.title=strCaption+fPercent+"%";pBar.innerHTML=&quo 阅读全文
posted @ 2008-11-30 11:20 X龙 阅读(1146) 评论(0) 推荐(0) 编辑
摘要:
在.net中可以通过oledb读取,先读取excel文件中的所有表的表名,然后遍历所有表中的数据,将数据添加到Dataset中。 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> public DataSet dsXls()... 阅读全文
posted @ 2008-11-07 16:56 X龙 阅读(378) 评论(0) 推荐(0) 编辑
摘要:
在.net访问xml文档:SelectSingleNode()中是一个xPath表达式.通过此方法可以找到指定的节点. Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> XmlDocument xmlDoc = new XmlDo... 阅读全文
posted @ 2008-10-22 14:58 X龙 阅读(168) 评论(0) 推荐(0) 编辑
摘要:
在这里我通过在程序中把sql server数据库安装到客户的机器上去:在还原数据前先检查是否有该数据库,如果有,可以删除,也可以杀掉该数据库相关进程。然后再执行还原操作。 Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->pub... 阅读全文
posted @ 2008-10-22 12:50 X龙 阅读(215) 评论(0) 推荐(0) 编辑
摘要:
代码与关闭ie一样:window.close(); 如果此操作不能成功,请在地址栏中输入:about:config 在过滤器中输入:dom.allow_scripts_to_close_windows 将其设置为true,看是否能解决。 阅读全文
posted @ 2008-10-17 10:08 X龙 阅读(551) 评论(0) 推荐(0) 编辑
摘要:
在javascript中检测是否同时按下alt+F4键时,必须在document.onkeydown中检测才行,window.onkeydown确不行。 Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->document.onke... 阅读全文
posted @ 2008-10-17 09:32 X龙 阅读(1290) 评论(0) 推荐(0) 编辑