<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_.NET开发</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/21349/rss</id><updated>2006-10-30T03:44:50Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/21349/rss"/><entry><id>http://www.cnblogs.com/jialine/archive/2006/10/30/544292.html</id><title type="text">AutoCompleteExtender 不工作的处理</title><summary type="text">最新版本的AutoCompleteExtender不工作,CTP  1.0 Beta版&#xD;&#xD;主要发现 AutoCompleteExtender不触发WebService的工作函数&#xD;&#xD;WebService.cs文件 作如下改动后,可正常使用&#xD;1、引用Microsoft.Web.Script.Services;&#xD;2、将[WebService(Namespace = "http://tempuri.org/")]&#xD;   [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]]两句删除掉&#xD;增加[ScriptService]&#xD;即可&#xD;</summary><published>2006-10-30T03:45:00Z</published><updated>2006-10-30T03:45:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/10/30/544292.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/10/30/544292.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/10/16/530391.html</id><title type="text">Sql Server 2005自定义分页</title><summary type="text">SqlServer2005自定义分页作者:minerva 日期:2006-09-20字体大小: 小 中 大  　　在sql server 2000中,要实现显示某一页,就返回那一页数据的效果的方法实在不尽人意.网上很多通用的分页存储过程,但看着就头大.如果使用我前面提到的使用in,not in,top来进行返回特定页,特殊的限制又会比较多(比如ID要递增).现在Sql Server 2005中提供...</summary><published>2006-10-16T07:29:00Z</published><updated>2006-10-16T07:29:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/10/16/530391.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/10/16/530391.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/10/16/530061.html</id><title type="text">C#操作Excel（导入导出）- -</title><summary type="text">from http://0x00.blogchina.com/2460998.html  前些日子，有很多朋友说需要C#导出到Excel的代码，现共享给大家/// &amp;lt;summary&amp;gt; /// 读取Excel文档 /// &amp;lt;/summary&amp;gt; /// &amp;lt;param name="Path"&amp;gt;文件名称&amp;lt;/param&amp;gt; /// &amp;lt;returns&amp;gt;...</summary><published>2006-10-16T02:54:00Z</published><updated>2006-10-16T02:54:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/10/16/530061.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/10/16/530061.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/10/12/527736.html</id><title type="text">HTML中的转义字符</title><summary type="text">HTML中的转义字符&amp;#160;&amp;#160;　　HTML中&amp;lt;, &amp;gt;，&amp;amp;等有特殊含义，(前两个字符用于链接签，&amp;amp;用于转义)，不能直接使用。使用这三个字符时，应使用它们的转义序列，如下所示： &amp;amp;amp; 或 &amp;#38; &amp;amp; 和 &amp;amp;lt; 或 &amp;#60; &amp;lt; &amp;#160; 小于号 &amp;amp;gt; 或 &amp;#62; &amp;gt; &amp;#160; 大于号 ...</summary><published>2006-10-12T12:37:00Z</published><updated>2006-10-12T12:37:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/10/12/527736.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/10/12/527736.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/10/11/525923.html</id><title type="text">对象存数据库的几种方案比较</title><summary type="text">1、将每个属性用字段的方式存数据库，一个字，烦2、如果属性不需要检索、排序等操作，可以将整个对象存数据库方法：先序列化，以byte[] 的形式将数据存储到数据库的二进制字段（varbinary(MAX)） 读取的时候反序列化，再显式转换为对象优点：性能好，占数据少缺点：如果你更改了对象属性的话，以前存储的对象信息你就看不懂了，全是二进制最佳方案，以xml的模式存储到数据库System.Runtim...</summary><published>2006-10-11T02:01:00Z</published><updated>2006-10-11T02:01:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/10/11/525923.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/10/11/525923.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/09/26/514921.html</id><title type="text">关于ms-sqlserver的扩展属性 </title><summary type="text">如何增加字段描述，取得字段描述，我也有回答，也看到其他同仁的答案，这里整理一下！　　新增：我们知道在SQL Server 2000中，Microsoft添加了扩展属性，用于帮助用户在多个数据库对象上定义和操作用户定义的属性。exec sp_addextendedproperty N'MS_Description', N'字段描述', N'user', N'dbo', N'table', N'表名'...</summary><published>2006-09-26T02:12:00Z</published><updated>2006-09-26T02:12:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/09/26/514921.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/09/26/514921.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/09/25/513799.html</id><title type="text">.NET读取数据库说明信息</title><summary type="text">首先，添加引用：Microsoft.SqlServer.Management.SmoMicrosoft.SqlServer.ConnectionInfo然后创建数据库集合对象public static string ReturnMemoInfo{Server srv = new Server(srvname);Microsoft.SqlServer.Management.Smo.DatabaseC...</summary><published>2006-09-25T01:58:00Z</published><updated>2006-09-25T01:58:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/09/25/513799.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/09/25/513799.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/09/18/507649.html</id><title type="text">asp.net上传RAR文件自动解压</title><summary type="text">using System;using System.IO;using System.Diagnostics;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Web.Security;using System.Web;using Syste...</summary><published>2006-09-18T09:16:00Z</published><updated>2006-09-18T09:16:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/09/18/507649.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/09/18/507649.html"/></entry><entry><id>http://www.cnblogs.com/jialine/archive/2006/09/15/505459.html</id><title type="text">ASP.NET生成高质量缩略图通用函数(c#代码)</title><summary type="text">在网站开发时,生成缩略图是一个非常常见和实用的功能.以前在asp里只能借助com组件实现,现在在.net里可以利用框架的强大的类库轻松实现.下面帖出完整的代码(带详细注释),参考了网上的一些文章及.net sdk相关内容.QQROOM网络家园的图片上传用到了所有的4种生成方式. /// &amp;lt;summary&amp;gt; /// 生成缩略图 /// &amp;lt;/summary&amp;gt; /// &amp;lt;p...</summary><published>2006-09-15T09:24:00Z</published><updated>2006-09-15T09:24:00Z</updated><author><name>加林仙人</name><uri>http://www.cnblogs.com/jialine/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jialine/archive/2006/09/15/505459.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jialine/archive/2006/09/15/505459.html"/></entry></feed>
