上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 65 下一页
摘要: Windows XP/2003系统中的远程终端是一项非常实用的功能,而默认的远程终端服务端口为3389。为了防止入侵者扫描主机开放端口,一旦发现其开放了3389端口,就会进行下一步的入侵,我们可以通过注册表来修改window XP/windows 2003的远程桌面端口:步骤:打开“开始→运行”,输入“regedit”,打开注册表,进入以下路程序代码Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp 阅读全文
posted @ 2012-05-19 11:22 94cool 阅读(1699) 评论(0) 推荐(0)
摘要: 正则表达式匹配可能包括任意长度的任意空白的任意字符串:(.*?) 阅读全文
posted @ 2012-05-15 19:52 94cool 阅读(9147) 评论(0) 推荐(1)
摘要: 打开复制来的虚拟机文件时出现了以下问题:VMware Workstation cannot open one of the virtual disks needed by this VM because it is larger than the maximum file size supported by the host file system. Some remote file systems do not support files larger than 2 GB, even though the file system on the server might.Cannot open 阅读全文
posted @ 2012-05-11 23:28 94cool 阅读(2053) 评论(0) 推荐(0)
摘要: IE浏览器:工具->Internet选项->常规->Internet临时文件夹->设置在弹出的设置窗口中,点击“移动文件夹”后,可以进行设置。设置的时候建议工具->Internet选项->常规->历史记录中清空历史记录再移动,否则文件太大,容易死机。Firefox浏览器:地址栏输入“about:config” ,新建字符串“browser.cache.disk.parent_directory”指向要存放位置,另外检查“browser.cache.disk.enable”是否为true。打开Firefox浏览器,在地址栏输入 about:config查 阅读全文
posted @ 2011-12-30 14:36 94cool 阅读(640) 评论(0) 推荐(0)
摘要: SUBST [drive1: [drive2:]path]SUBST drive1: /D drive1: 指定要指派路径的虚拟驱动器。 [drive2:]path 指定物理驱动器和要指派给虚拟驱动器的 路径。 /D 删除被替换的 (虚拟) 驱动器。不加任何参数键入 SUBST,可以显示当前虚拟驱动器的清单。 阅读全文
posted @ 2011-12-30 13:48 94cool 阅读(359) 评论(0) 推荐(0)
摘要: 使用 $('#test')[0].src才能够获取到img的地址赋值 $('#test').attr('src',yourimgUrl) 阅读全文
posted @ 2011-12-27 22:44 94cool 阅读(3495) 评论(0) 推荐(0)
摘要: aspx:<asp:Repeater runat="server" ID="aspRepeater1" onitemdatabound="aspRepeater1_ItemDataBound"> <HeaderTemplate> <table class="Width100"> <thead> <td> <div> <span>Name</span> </div> </td> <td> 阅读全文
posted @ 2011-12-19 22:06 94cool 阅读(240) 评论(0) 推荐(0)
摘要: 下载:http://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c?SRC=VSIDEIDE传统的添加dll方式,就是下载,解压,然后找到需要添加到项目中的dll,接着添加引用,使用NuGet添加dll就比较简单,首先你可以去Nuget.org去查找是否有你要添加的第三方软件包 阅读全文
posted @ 2011-12-15 22:54 94cool 阅读(220) 评论(0) 推荐(0)
摘要: jquery 清空 option $(“#sel”).empty();添加4法:1:$('#example').append('<option value="foo" selected="selected">Foo</option>');2:('#example').append(new Option('Foo', 'foo', true, true));3:var options = $('#example').attr('o 阅读全文
posted @ 2011-11-23 22:50 94cool 阅读(208) 评论(0) 推荐(0)
摘要: 把DropDownList改成select用Request.From来取值赋值用value如:<select runat="server" id="ddlCity" style="width:75px">赋值ddlCity.Value="beijing"取值Request["ddlCity"] 阅读全文
posted @ 2011-11-23 22:45 94cool 阅读(288) 评论(0) 推荐(0)
上一页 1 ··· 51 52 53 54 55 56 57 58 59 ··· 65 下一页