上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 60 下一页
摘要: WIN 2008 SERVER+FileZilla FTP Server,FTP端口:2013防火墙中已允许FTP Server及端口访问,设置好后,FlashFxp客户端,被动模式,能连接,但是出错:425 Can't open data connection,不能读出目录列表,服务端也提示:42... 阅读全文
posted @ 2014-07-31 21:42 VipSoft 阅读(1370) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2014-07-31 14:36 VipSoft 阅读(7723) 评论(2) 推荐(0)
摘要: Win7 +IIS 刚配置的网站,输入网址后报以下错误:应用程序“PFIZERQUERY”中的服务器错误Internet Information Services 7.5错误摘要HTTP 错误 404.2 - Not Found由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提... 阅读全文
posted @ 2014-07-31 14:31 VipSoft 阅读(10128) 评论(0) 推荐(0)
摘要: 注意改完端口后一定要让防火墙允许访问此端口首先打开注册表:运行-regedit:HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\Wds\Repwd\Tds\Tcp键项的 PortNumber的数值数据就是使用的端口... 阅读全文
posted @ 2014-07-31 10:10 VipSoft 阅读(578) 评论(0) 推荐(1)
摘要: 行列互转,是一个经常遇到的需求。实现的方法,有case when方式和2005之后的内置pivot和unpivot方法来实现。在读了技术内幕那一节后,虽说这些解决方案早就用过了,却没有系统性的认识和总结过。为了加深认识,再总结一次。行列互转,可以分为静态互转,即事先就知道要处理多少行(列);动态互转... 阅读全文
posted @ 2014-05-19 09:58 VipSoft 阅读(313) 评论(0) 推荐(0)
摘要: drop table#tempcitysselect * into #tempcitys from hy_citys上面的语句第一次运行的时候就肯定出错了,但第二次就不会。因为select * into #tempcitys from hy_citys自动创建了临时表#tempcitys ,第一次临... 阅读全文
posted @ 2014-05-15 17:02 VipSoft 阅读(1896) 评论(0) 推荐(0)
摘要: 本地能上传文件,部署到服务器上就报Cannot access a closed file 错误,以下是解决方法: 最重要是requestLengthDiskThreshold此属性设置输入流缓冲阈值。 阅读全文
posted @ 2014-04-14 00:04 VipSoft 阅读(1393) 评论(0) 推荐(1)
摘要: C# 跳转新页面判断URL文件是不是在于在。C# 指定物理目录下载文件,Response.End导致“正在中止线程”异常的问题public class FileHandler { public static bool DownLoadFile(string path, string fileName) { bool result = false; if (!string.IsNullOrEmpty(path)) { if (path.StartsWith("http... 阅读全文
posted @ 2014-03-27 10:35 VipSoft 阅读(1717) 评论(0) 推荐(0)
摘要: 判断URL文件是不是在于在。private static bool UrlIsExist(string url){ System.Uri u = null; try { u = new Uri(url); } catch { return false; } bool isExist = false; System.Net.HttpWebRequest r = System.Net.HttpWebRequest.Create(u) as System.Net.HttpWebRequest; r.Method = "HEAD"; ... 阅读全文
posted @ 2014-03-27 10:31 VipSoft 阅读(379) 评论(0) 推荐(0)
摘要: C# 跳转新页面string url = "http://www.vipsoft.com.cn";ResponseRedirect.Redirect(Response, url, "_blank", "'toolbar=0,scrollbars=1,status=0,menubar=0,resizable=1,top=0,left=0,height=800,width=1000");}调用下面代码public class ResponseRedirect { public static void Redirect(HttpRe 阅读全文
posted @ 2014-03-27 10:25 VipSoft 阅读(8198) 评论(0) 推荐(0)
摘要: System.Data.ConstraintException: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. at System.Data.DataTable.EnableConstraints() at System.Data.DataTable.set_EnforceConstraints(Boolean value) at System.Data.DataTable.EndLoadDat... 阅读全文
posted @ 2014-02-28 16:22 VipSoft 阅读(2998) 评论(0) 推荐(0)
摘要: SELECT * FROM aspnet_RolesGODECLARE @role varchar(50) DECLARE CusCursor CURSOR FOR select RoleName from aspnet_Roles OPEN CusCursor FETCH NEXT FROM CusCursor INTO @role WHILE (@@FETCH_STATUS = 0) BEGIN SELECT @role --这里写SQL语句 FETCH NEXT FROM CusCursor INTO @role ... 阅读全文
posted @ 2014-02-26 16:33 VipSoft 阅读(439) 评论(0) 推荐(0)
摘要: FileHandlerhttp://chuna2.787528.xyz/vipsoft/p/3627709.htmlUpdatePanel无法导出下载文件:http://chuna2.787528.xyz/vipsoft/p/3298299.html//相对路径下载。path: ~/DownLoad///public static bool DownLoadFile(string path, string fileName){ bool result = false; try { string filePath = HttpContext.Current.Server... 阅读全文
posted @ 2014-01-16 09:35 VipSoft 阅读(4434) 评论(0) 推荐(0)
摘要: 一键制作启动u盘失败的主要原因是什么?今天u启动小编就和大家一起来分析原因并寻求答案吧!原因分析:1、u盘内有文件正在运行或者是打开;2、u盘自身的质量问题;3、最主要的原因是:QQ电脑管家导致;解决方案:1、关闭u盘里面正在运行或者打开的文件,再制作试试;2、换一个u盘制作试试;3、把电脑QQ管家退出来,再制作启动u盘;目前发现很多用户在利用u启动v5.0制作启动u盘时出现“一键制作启动u盘失败”的原因在于电脑运行了“QQ电脑管家”,所以为了避免您在制作启动u盘的过程中出现类似的问题,请您在制作启动u盘前退出QQ电脑管家。 阅读全文
posted @ 2013-12-12 22:18 VipSoft 阅读(447) 评论(0) 推荐(0)
摘要: 由于将IE11升级到了 11 之前的网站无法正常使用,如果是开发人员碰到之问题,使用了微软的asp.net 控件,那么将服务器的.net framework 升级到 4.5http://www.microsoft.com/en-us/download/details.aspx?id=30653如果浏览别人的网站,没办法修改服务器的设置,出现了兼容性问题(方法2可解决此类问题)。1.在F12改变模式的情况下是可以正常方法,但退出 F12 Developer Tools 仍然无法使用,F12总不能一直开着,所以这种方式只能在开发模式下使用。2.将当前域名添加到Compatibility View 阅读全文
posted @ 2013-12-04 13:49 VipSoft 阅读(320) 评论(0) 推荐(0)
摘要: 这种方法可以重复利用,如果下次它又消失了,你可以再导入一次就OK了。比如我们创建一个叫 notepad++.reg的文件,将下面的内容拷贝进去保存Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\*\Shell\NotePad++][HKEY_CLASSES_ROOT\*\Shell\NotePad++\Command]@="\"D:\\Programs\\Notepad++\\notepad++.exe\" \"%1\"" 阅读全文
posted @ 2013-11-06 11:25 VipSoft 阅读(665) 评论(0) 推荐(1)
摘要: datatable是一个jquery扩展的表格插件。其提供了强大的表格功能。官方地址:http://www.datatables.net/在官方示例中,对于表格的是否可排序是在初始化中设置的一个值来决定的$(".datatable-simplified").dataTable( { "bSort": false});如果要在初始化时就指定默认以哪一列来排序则$(document).ready(function() { $('#example').dataTable( { "aaSorting": [[ 4, " 阅读全文
posted @ 2013-11-05 22:32 VipSoft 阅读(5932) 评论(0) 推荐(0)
摘要: 1.运行注册表regedit,进入到HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default项,在右边窗口有若干个MRU+数字,全部删除。2.再删除我的文档My Documents下Default.rdp(系统隐藏)文件。经过以上的设置后,再次启动远程桌面客户端程序,你将发现记录已经不存在了。 阅读全文
posted @ 2013-09-23 10:02 VipSoft 阅读(360) 评论(0) 推荐(1)
摘要: 如果你在GridView控件上设置 AllowPaging="true" or AllowSorting="true" 而没有使用使用数据源控件 DataSource (i.e. SqlDataSource, ObjectDataSource),运行则会出现下列错误: 当你在GridView控件上单... 阅读全文
posted @ 2013-09-18 14:36 VipSoft 阅读(415) 评论(0) 推荐(0)
摘要: 是不是用了mini-KMS_Activator这个工具去激活?是的话,把mini-KMS_Activator点出来,使用第一个按钮Install / Uninstall KM Service把它的服务停掉。然后再用Office 2010 Toolkit就可以正常工作了。 或者把KM Service这个服务(进程)关闭Office 2010 Toolkit 需要装 .NET Framework 4.0 阅读全文
posted @ 2013-09-08 22:17 VipSoft 阅读(5029) 评论(0) 推荐(0)
上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 60 下一页