<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_大白鲨博客</title><subtitle type="text">欢迎讨论.Net技术、delphi技术、C++等技术(我的QQ号：353079102)</subtitle><id>http://feed.cnblogs.com/blog/u/17844/rss</id><updated>2008-01-24T13:25:27Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/17844/rss"/><entry><id>http://www.cnblogs.com/dengsu888666/archive/2008/01/24/1052119.html</id><title type="text">"Maximum length exceeded"错误的解决办法</title><summary type="text">只要修改web.config，在&lt;microsoft.web&gt;&lt;scripting&gt;&lt;webServices&gt;中定义一下他的长度到足够大就可以了。比如：&lt;jsonSerialization maxJsonLength="500000"&gt;&lt;/jsonSerialization&gt;如：&lt;system.web.extensions&gt; ...</summary><published>2008-01-24T13:25:00Z</published><updated>2008-01-24T13:25:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2008/01/24/1052119.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2008/01/24/1052119.html"/><content type="text">只要修改web.config，在&lt;microsoft.web&gt;&lt;scripting&gt;&lt;webServices&gt;中定义一下他的长度到足够大就可以了。比如：&lt;jsonSerialization maxJsonLength="500000"&gt;&lt;/jsonSerialization&gt;如：&lt;system.web.extensions&gt; ...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2008/01/24/1052116.html</id><title type="text">javascript的数组使用方法</title><summary type="text">数组有四种定义的方式使用构造函数：var a = new Array();var b = new Array(8);var c = new Array("first", "second", "third");或者数组直接量：var d = ["first", "second", "third"];属性Array只有一个属性，就是length，length表示的是数组所占内存空间的数目，而不仅仅是数...</summary><published>2008-01-24T13:19:00Z</published><updated>2008-01-24T13:19:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2008/01/24/1052116.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2008/01/24/1052116.html"/><content type="text">数组有四种定义的方式使用构造函数：var a = new Array();var b = new Array(8);var c = new Array("first", "second", "third");或者数组直接量：var d = ["first", "second", "third"];属性Array只有一个属性，就是length，length表示的是数组所占内存空间的数目，而不仅仅是数...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/12/26/1015060.html</id><title type="text">asp.net操作Excel拒绝访问的解决</title><summary type="text">TlbImp.exe在C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin 我要在ASP.net中操作EXCEL，具体作法如下： tlbimp excel.exe 生成excel.dll并把excel.dll拷到wwwroot\bin下,给了IIS所在目录的强执行权限。且excel.dll能写入。 部分代码如下： Excel.App...</summary><published>2007-12-26T01:49:00Z</published><updated>2007-12-26T01:49:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/12/26/1015060.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/12/26/1015060.html"/><content type="text">TlbImp.exe在C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin 我要在ASP.net中操作EXCEL，具体作法如下： tlbimp excel.exe 生成excel.dll并把excel.dll拷到wwwroot\bin下,给了IIS所在目录的强执行权限。且excel.dll能写入。 部分代码如下： Excel.App...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/11/28/976050.html</id><title type="text">利用javascript判断浏览器是否已经安装ActiveX控件和是否禁止运行ActiveX控件</title><summary type="text">从微软给IE打上SP2以后，当IE在打开一些含有ActiveX控件的网页是，不再像以前那样，弹出提示框，让用户选择是否安装控件；现在默认情况下给隐藏起来，普通用户根本不知道是怎么回事。公司产品同样也遇到这样的问题，唯一的办法就是将控件做成一个exe文件，供用户下载手动安装注册；这样就需要做一个检测，检测要是用户没有安装控件的话就提示用户用户下载安装，要是安装了就直接转到相关页面。想了很多办法，最后...</summary><published>2007-11-28T11:57:00Z</published><updated>2007-11-28T11:57:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/11/28/976050.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/11/28/976050.html"/><content type="text">从微软给IE打上SP2以后，当IE在打开一些含有ActiveX控件的网页是，不再像以前那样，弹出提示框，让用户选择是否安装控件；现在默认情况下给隐藏起来，普通用户根本不知道是怎么回事。公司产品同样也遇到这样的问题，唯一的办法就是将控件做成一个exe文件，供用户下载手动安装注册；这样就需要做一个检测，检测要是用户没有安装控件的话就提示用户用户下载安装，要是安装了就直接转到相关页面。想了很多办法，最后...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/11/16/961370.html</id><title type="text">IIS错误Server Application Error(http 500 错误)解决办法</title><summary type="text">具体错误如下：Server Application Error The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Plea...</summary><published>2007-11-16T02:46:00Z</published><updated>2007-11-16T02:46:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/11/16/961370.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/11/16/961370.html"/><content type="text">具体错误如下：Server Application Error The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Plea...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/06/18/786988.html</id><title type="text">SQL Server的SQL技巧</title><summary type="text">declare @tmpt table(a int,b numeric(20,3),c numeric(20,3))insert into @tmpt EXECUTE cbdbfxt 2005,5,'670,'select * from @tmptdrop table #tmptcreate table #tmpt(a int,b numeric(20,3),c numeric(20,3));in...</summary><published>2007-06-18T00:45:00Z</published><updated>2007-06-18T00:45:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/06/18/786988.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/06/18/786988.html"/><content type="text">declare @tmpt table(a int,b numeric(20,3),c numeric(20,3))insert into @tmpt EXECUTE cbdbfxt 2005,5,'670,'select * from @tmptdrop table #tmptcreate table #tmpt(a int,b numeric(20,3),c numeric(20,3));in...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/05/04/735842.html</id><title type="text">ASP.NET 2.0 实现多文件上传</title><summary type="text">想实现任意多个文件上传的功能，点击一次按钮可以添加一个文件上传框，以前在网络硬盘上看到过。javascript我知道怎么实现任意添加上传文件控件，问题是添加的是Html控件。于是上Google搜索“ASP.NET 多文件上传”，还真找到一篇文件，标题为《在ASP.NET中实现多文件上传》，文章里面是VB.NET实现的，功能和我要的一模一样，我主要是要看服务器端怎么获取客户端...</summary><published>2007-05-04T12:20:00Z</published><updated>2007-05-04T12:20:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/05/04/735842.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/05/04/735842.html"/><content type="text">想实现任意多个文件上传的功能，点击一次按钮可以添加一个文件上传框，以前在网络硬盘上看到过。javascript我知道怎么实现任意添加上传文件控件，问题是添加的是Html控件。于是上Google搜索“ASP.NET 多文件上传”，还真找到一篇文件，标题为《在ASP.NET中实现多文件上传》，文章里面是VB.NET实现的，功能和我要的一模一样，我主要是要看服务器端怎么获取客户端...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/04/02/696555.html</id><title type="text">网络MSDTC配置方法</title><summary type="text">一、启用网络 DTC 访问的步骤启用网络DTC是分布式数据库事物控制的必要条件。设置过程应依下面步骤进行。1) 单击“开始”，指向“控制面板”，然后单击“添加或删除程序”；2) 单击“添加/删除 Windows 组件”；3) 选择“应用程序服务器”，然后单击“详细信息...</summary><published>2007-04-02T01:37:00Z</published><updated>2007-04-02T01:37:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/04/02/696555.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/04/02/696555.html"/><content type="text">一、启用网络 DTC 访问的步骤启用网络DTC是分布式数据库事物控制的必要条件。设置过程应依下面步骤进行。1) 单击“开始”，指向“控制面板”，然后单击“添加或删除程序”；2) 单击“添加/删除 Windows 组件”；3) 选择“应用程序服务器”，然后单击“详细信息...</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/03/28/691206.html</id><title type="text">visual studio 2005包加载失败的解决办法</title><summary type="text">运行 devenv /resetskippkgs</summary><published>2007-03-28T06:02:00Z</published><updated>2007-03-28T06:02:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/03/28/691206.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/03/28/691206.html"/><content type="text">运行 devenv /resetskippkgs</content></entry><entry><id>http://www.cnblogs.com/dengsu888666/archive/2007/03/28/691204.html</id><title type="text">Office Excel 2003找不到安装文件sku011.cab的解决办法</title><summary type="text">在手头有Office安装盘的情况下:１.从[开始]-&gt;[执行]-&gt;输入[regedit]-&gt;[确定] ２.到[HKEY_LOCAL_MACHINE]-&gt;[Software]-&gt;[Microsoft]-&gt;[Office]-&gt;[11.0]-&gt;[Delivery] ３.在[Delivery]下应该只有一个资料夹，那就是你的下载码了！通常是[90000409...</summary><published>2007-03-28T06:00:00Z</published><updated>2007-03-28T06:00:00Z</updated><author><name>大白鲨</name><uri>http://www.cnblogs.com/dengsu888666/</uri></author><link rel="alternate" href="http://www.cnblogs.com/dengsu888666/archive/2007/03/28/691204.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/dengsu888666/archive/2007/03/28/691204.html"/><content type="text">在手头有Office安装盘的情况下:１.从[开始]-&gt;[执行]-&gt;输入[regedit]-&gt;[确定] ２.到[HKEY_LOCAL_MACHINE]-&gt;[Software]-&gt;[Microsoft]-&gt;[Office]-&gt;[11.0]-&gt;[Delivery] ３.在[Delivery]下应该只有一个资料夹，那就是你的下载码了！通常是[90000409...</content></entry></feed>
