上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: function getSelectedContents(){ if (window.getSelection) { //chrome,firefox,opera var range=window.getSelection().getRangeAt(0); var container = docum 阅读全文
posted @ 2018-07-24 17:11 AZRNG 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: 在登陆成功时候使用 Hashtable hOnline = (Hashtable)Application["Online"]; //定义一个全局变量 if (hOnline != null) { IDictionaryEnumerator idE = hOnline.GetEnumerator(); 阅读全文
posted @ 2018-07-24 16:16 AZRNG 阅读(532) 评论(0) 推荐(0) 编辑
摘要: Windows服务在Visual Studio 以前的版本中叫NT服务,在VS.net启用了新的名称。用Visual C# 创建Windows服务不是一件困难的事,本文就将指导你一步一步创建一个Windows服务并使用它。这个服务在启动和停止时,向一个文本文件中写入一 些文字信息。 第一步:创建服务 阅读全文
posted @ 2018-07-24 11:26 AZRNG 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 由于在.net中,Request时出现有HTML或Javascript等字符串时,系统会认为是危险性值。立马报出“从客户端 中检测到有潜在危险的Request.Form值”这样的错。 解决方案一: 在.aspx文件头中加入这句: <%@ Page validateRequest="false" %> 阅读全文
posted @ 2018-07-23 17:26 AZRNG 阅读(2390) 评论(0) 推荐(1) 编辑
摘要: 1.http://msdn.itellyou.cn/ MSDN很多工具可以下载 将地址拷贝到迅雷下载即可 2.https://visualstudiogallery.msdn.microsoft.com/a1166718-a2d9-4a48-a5fd-504ff4ad1b65 isual Studi 阅读全文
posted @ 2018-07-23 17:24 AZRNG 阅读(200) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title></title></head><body> </body></html> 阅读全文
posted @ 2018-07-23 11:16 AZRNG 阅读(673) 评论(0) 推荐(0) 编辑
摘要: Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('请输入正确的用户名和密码!');</script>"); 在.NET WEB应用上弹出消息框,我试验成功的有下面的几种,若有其他方法,望您不吝赐教。 阅读全文
posted @ 2018-07-23 08:57 AZRNG 阅读(1324) 评论(0) 推荐(0) 编辑
摘要: 第一步:添加引用using System.Printing;第二步:代码public static List<string> GetPrintList(){ List<string> lt = new List<string>(); LocalPrintServer printServer = ne 阅读全文
posted @ 2018-07-20 18:02 AZRNG 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 整理了几个常用的数据库维护的脚本,和大家分享,希望能够对大家有所帮助,尤其是--初学者。这些脚本只针对Sql Server 2000,在Sql Server 2005下没有进行测试,有些--可能不适用。如果有错误,请联系我<Yahongq111@163.com> /***************** 阅读全文
posted @ 2018-07-19 17:29 AZRNG 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 存入cookie if (Request.Cookies.AllKeys.Contains(loginInfo)) { //如果cookie存在,更新cookie信息 HttpCookie hc = Request.Cookies[loginInfo]; hc.Value = Base64Helpe 阅读全文
posted @ 2018-07-19 11:10 AZRNG 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页