<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>软若石（I Will Get What I Want.）Asp.Net,Ajax,C#,Javascript </title><link>http://blog.csdn.net/ruanruoshi/</link><description>明月松间照，清泉石上流。</description><dc:language>zh-CN</dc:language><lastUpdateTime>Tue, 22 Jul 2008 15:06:00 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>软若石</dc:creator><title>ASP.NET Session详解 </title><link>http://blog.csdn.net/ruanruoshi/archive/2008/07/22/2690698.aspx</link><pubDate>Tue, 22 Jul 2008 15:06:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2008/07/22/2690698.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/2690698.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2008/07/22/2690698.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/2690698.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2690698</trackback:ping><description>(一) 描述
当用户在 Web 应用程序中导航 ASP.NET 页时，ASP.NET 会话状态使您能够存储和检索用户的值。HTTP 是一种无状态协议。这意味着 Web 服务器会将针对页面的每个 HTTP 请求作为独立的请求进行处理。服务器不会保留以前的请求过程中所使用的变量值的任何信息。

ASP.NET 会话状态将来自限定时间范围内的同一浏览器的请求标识为一个会话，当每个用户首次与这台WWW服务器建立连接时，他就与这个服务器建立了一个
&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/2690698.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>SQL Server2000字符串截取各种实例</title><link>http://blog.csdn.net/ruanruoshi/archive/2008/07/22/2688662.aspx</link><pubDate>Tue, 22 Jul 2008 10:28:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2008/07/22/2688662.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/2688662.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2008/07/22/2688662.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/2688662.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2688662</trackback:ping><description>
  A.截取从字符串左边开始N个字符

  Declare @S1 varchar(100)
  Select @S1='http://www.163.com'
  Select Left(@S1,4)
  ------------------------------------
  显示结果: http 

&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/2688662.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>服务器端FileUpload上传控件如何禁止手动输入并且不能粘贴.</title><link>http://blog.csdn.net/ruanruoshi/archive/2008/05/07/2407839.aspx</link><pubDate>Wed, 07 May 2008 10:13:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2008/05/07/2407839.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/2407839.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2008/05/07/2407839.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/2407839.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2407839</trackback:ping><description>&lt;p&gt;&amp;lt;asp:FileUpload &amp;nbsp; ID= "FileUpload1 " &amp;nbsp; ContentEditable= "false " &amp;nbsp; runat= "server " &amp;nbsp; Width= "350px " &amp;nbsp; &amp;nbsp; onchange= 'PicChange(); ' &amp;nbsp; /&amp;gt; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;只需要设置：ContentEditable= "false "&amp;nbsp;&amp;nbsp;既可。 &amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; 另：禁止手动输入到可以用 onkeydown= "event.returnValue=false; " &amp;nbsp; onpaste= "return &amp;nbsp; false " &lt;/p&gt;&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/2407839.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>C#中使窗体显示SplitContainer或Panel中。</title><link>http://blog.csdn.net/ruanruoshi/archive/2008/03/14/2181636.aspx</link><pubDate>Fri, 14 Mar 2008 11:37:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2008/03/14/2181636.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/2181636.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2008/03/14/2181636.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/2181636.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2181636</trackback:ping><description>C#中使窗体显示SplitContainer或Panel中。&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/2181636.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>数据库设计规范</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/11/01/1860467.aspx</link><pubDate>Thu, 01 Nov 2007 08:17:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/11/01/1860467.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1860467.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/11/01/1860467.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1860467.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1860467</trackback:ping><description>1数据库表及字段命名、设计规范
1.1数据库表数据库表的命名规范：
&amp;#61548;表的前缀应该用系统或模块的英文名的缩写（全部大写或首字母大写）。如果系统功能简单，没有划分为模块，则可以以系统英文名称的缩写作为前缀，否则以各模块的英文名称缩写作为前缀。例如：如果有一个模块叫做BBS(缩写为BBS),那么你的数据库中的所有对象的名称都要加上这个前缀：BBS_ + 数据库对象名称，BBS_CustomerInfo标示论坛模块中的客户信息表&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1860467.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>本地计算机上的MSSQLSERVER服务启动后又停止了。一些服务自动停止，如果它们没有什么可做的，例如“性能日志和警报“服务"。</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/10/24/1841952.aspx</link><pubDate>Wed, 24 Oct 2007 16:31:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/10/24/1841952.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1841952.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/10/24/1841952.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1841952.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1841952</trackback:ping><description>遇到了这个问题，在网上查了很多解决方法，但均不适合我。忽然想起，一开始时正常，后来把2005网络配置里的VIA协议启动后才不正常的，所以只要打开SQL Server Configuration Manager 把SQL Server 2005网络配置里相关的VIA协议禁用就可以了。&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1841952.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>===都是缓存惹的祸=====</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/10/24/1841774.aspx</link><pubDate>Wed, 24 Oct 2007 14:43:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/10/24/1841774.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1841774.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/10/24/1841774.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1841774.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1841774</trackback:ping><description>

上面的代码读取文件夹里的文件，绑定到DataView上。可是删除了一个文件后，还是显示在DataView上。在页面上和代码里设置页面缓存根本就没有用。必须给xmldatasource的EnableCaching 属性 设置为 false才可以。



&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1841774.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>网页代码常用小技巧2</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/10/09/1816489.aspx</link><pubDate>Tue, 09 Oct 2007 11:08:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/10/09/1816489.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1816489.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/10/09/1816489.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1816489.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1816489</trackback:ping><description>况下还是会撑开，因此需要再加上后面一句{word-wrap:break-word;}就可以解决。此样式可以让表格中的一些连续的英文单词自动换行。  &lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1816489.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>网页代码常用小技巧1</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/10/09/1816487.aspx</link><pubDate>Tue, 09 Oct 2007 11:06:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/10/09/1816487.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1816487.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/10/09/1816487.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1816487.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1816487</trackback:ping><description>让浏览器窗口永远都不出现滚动条。 &lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1816487.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>快速、大量、简单的复制两个数据库之间的数据。</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/09/29/1806583.aspx</link><pubDate>Sat, 29 Sep 2007 15:58:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/09/29/1806583.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1806583.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/09/29/1806583.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1806583.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1806583</trackback:ping><description> protected void Button1_Click(object sender, EventArgs e)
    {
        string sString;
        string nString;

        SqlConnection sConn = new SqlConnection();
        SqlConnection nConn = new SqlConnection();

        SqlCommand sCom = new SqlCommand();
&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1806583.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>用数据源控件的事件处理数据库错误</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/09/26/1801990.aspx</link><pubDate>Wed, 26 Sep 2007 18:08:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/09/26/1801990.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1801990.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/09/26/1801990.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1801990.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1801990</trackback:ping><description>如果出现错误，则把e.ExceptionHandled=true;表示.NET已处理了异常，应用程序可以继续执行。
&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1801990.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>创建自定义类型的强类型化集合</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/09/26/1801724.aspx</link><pubDate>Wed, 26 Sep 2007 15:15:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/09/26/1801724.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1801724.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/09/26/1801724.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1801724.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1801724</trackback:ping><description>以下创建了一个Person类型的强类型化集合。&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1801724.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>屏蔽本页内所有的客户端验证</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/09/24/1798085.aspx</link><pubDate>Mon, 24 Sep 2007 10:18:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/09/24/1798085.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1798085.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/09/24/1798085.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1798085.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1798085</trackback:ping><description>protected void Page_Load(object sender, EventArgs e)
    {
        foreach (BaseValidator bv in Page.Validators)
        {
            bv.EnableClientScript = false;
        }
    }&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1798085.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>修改上传文件大小的限制</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/09/21/1794108.aspx</link><pubDate>Fri, 21 Sep 2007 09:52:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/09/21/1794108.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1794108.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/09/21/1794108.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1794108.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1794108</trackback:ping><description>maxRequestLength  默认是4096K，修改此属性就可以修改上传文件的大小限制。executionTimeout 为超时时间。如果上传文件较大，应该修改此值以防超时。

&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1794108.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>软若石</dc:creator><title>一次上传多个文件</title><link>http://blog.csdn.net/ruanruoshi/archive/2007/09/21/1794089.aspx</link><pubDate>Fri, 21 Sep 2007 09:45:00 GMT</pubDate><guid>http://blog.csdn.net/ruanruoshi/archive/2007/09/21/1794089.aspx</guid><wfw:comment>http://blog.csdn.net/ruanruoshi/comments/1794089.aspx</wfw:comment><comments>http://blog.csdn.net/ruanruoshi/archive/2007/09/21/1794089.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/ruanruoshi/comments/commentRss/1794089.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1794089</trackback:ping><description>    protected void Button1_Click1(object sender, EventArgs e)
    {&lt;img src ="http://blog.csdn.net/ruanruoshi/aggbug/1794089.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>