上一页 1 ··· 3 4 5 6 7 8 下一页
  2010年3月4日
摘要: 1,打开sql查询分析器(T-sql) 2,输入查询语句: ALTER DATABASE 数据库名 MODIFY FILE (NAME = 原始逻辑文件名, NEWNAME = 新逻辑文件名) ALTER DATABASE 数据库名 MODIFY FILE (NAME = 原始逻辑文件名, NE... 阅读全文
posted @ 2010-03-04 15:28 wl666lw 阅读(844) 评论(0) 推荐(1) 编辑
  2010年2月25日
摘要: VERSION 5.00 Begin VB.Form frmMain Caption = "Form1" ClientHeight = 3090 ClientLeft = 60 ClientTop = 450 ClientWidth = 4680 LinkTopic = "Form1" ScaleH... 阅读全文
posted @ 2010-02-25 11:22 wl666lw 阅读(879) 评论(0) 推荐(0) 编辑
摘要: Private Sub ZipOrRar() '将C盘的test文件夹压缩为test.rar文件 Shell App.Path + "\WinRar.exe M C:\test.rar C:\test" End Sub Private Sub UnZipOrRar() '将test.rar解压缩在... 阅读全文
posted @ 2010-02-25 11:11 wl666lw 阅读(2934) 评论(0) 推荐(0) 编辑
  2010年2月8日
摘要: 本来是想实现控制台程序运行时自动全屏,但是只找到VC下的实现方法(http://www.vckbase.com/bbs/prime/viewprime.asp?id=347)。 其中要使用两个未公开的Win32 API函数来存取控制台窗口,这就需要使用动态调用的方法,动态调用中使用的Windows... 阅读全文
posted @ 2010-02-08 14:38 wl666lw 阅读(15506) 评论(0) 推荐(0) 编辑
  2010年2月2日
摘要: 一般来说,我们判断 iframe 是否加载完成其实与 判断 JavaScript 文件是否加载完成 采用的方法很类似: var iframe = document.createElement("iframe");iframe.src = "http://www.planabc.net";if (!/... 阅读全文
posted @ 2010-02-02 09:33 wl666lw 阅读(561) 评论(0) 推荐(0) 编辑
  2010年1月29日
摘要: js对文字进行编码涉及3个函数:escape,encodeURI,encodeURIComponent,相应3个解码函数:unescape,decodeURI,decodeURIComponent 1、 传递参数时需要使用encodeURIComponent,这样组合的url才不会被#等特殊字符截断... 阅读全文
posted @ 2010-01-29 17:11 wl666lw 阅读(404) 评论(0) 推荐(0) 编辑
摘要: asp.net程序运行时出现以下错误: 应用程序中的服务器错误。从客户端(XXX=" 方法二、配置web.config文件 推荐使用方法一。 阅读全文
posted @ 2010-01-29 15:30 wl666lw 阅读(645) 评论(0) 推荐(0) 编辑
  2010年1月28日
摘要: 先获取类的Type Type type = this.GetType(); //再用Type.GetProperties获得PropertyInfo[],然后就可以用foreach 遍历了 foreach (System.Reflection.PropertyInfo PInfo in type.G... 阅读全文
posted @ 2010-01-28 18:16 wl666lw 阅读(1789) 评论(1) 推荐(3) 编辑
  2010年1月27日
摘要: 在写ASP.NET程序的时候,会经常用到一些类似ALERT的JS脚本,自己瞎写了一个集合常用方法的类以便日后使用。 using System.Web; /// /// Javascript常用方法 /// public class JS { private static string S... 阅读全文
posted @ 2010-01-27 12:26 wl666lw 阅读(519) 评论(1) 推荐(0) 编辑
摘要: Label1.Text = "服务器名称:"+Server.MachineName;//服务器名称 Label2.Text = "服务器IP地址:" + Request.ServerVariables["LOCAL_ADDR"];//服务器IP地址 Label3.Text = "服务器域名:" ... 阅读全文
posted @ 2010-01-27 09:49 wl666lw 阅读(1439) 评论(1) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页