<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Dot Net KB</title>
    <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/archive/200802</link>
    <description>home</description>
    <language>en-US</language>
    <pubDate>Thu, 04 Dec 2008 23:14:29 GMT</pubDate>
    <lastBuildDate>Thu, 04 Dec 2008 23:14:29 GMT</lastBuildDate>
    <generator>Cuyahoga Website Framework</generator>
    <ttl>60</ttl>
    <item>
      <title>ViewState &amp; posting with callbacks</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/21</link>
      <description> ASP.NET Ajax makes it easy since UpdatePanel is capable to keep ViewState in sync, but if you insist using callbacks, you might have something to think.  
 Basically first&amp;nbsp;issue is that with callbacks the data to post to the server is gathered at WebForm_InitCallback() method when the Page loads. So first issue you see is that it seems callback doesn't send updated information to the server, that is for the other fields on the form (you usually...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Wed, 28 May 2008 06:29:13 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>MICROSOFT SQL SERVER: Temporary tables in SQL Server vs. table variables</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/20</link>
      <description>When writing T-SQL code, you often need a table in which to store data temporarily when it comes time to execute that code. You have four table options: normal tables, local temporary tables, global temporary tables and table variables. I'll discuss the differences between using temporary tables in SQL Server versus table variables. Each of the four table options has its own purpose and use, and each has its benefits and issues:  
 
Normal tables...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Mon, 12 May 2008 08:13:12 GMT</pubDate>
      <category>Database</category>
    </item>
    <item>
      <title>Validating User Input In ASP.NET 2.0 Web Applications </title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/19</link>
      <description> What you are going to learn in this tutorial? 
 What is Validation?  
Why it's important?  
How to use  ASP.NET 2.0  validation controls  
Why you cannot validate every possible input.  
 
 Introduction 
 Developing robust applications is the target of every serious developer. Being sure from the correctness of the input coming to your application is one of the major practices used to rise application robustness. In this tutorial we are going...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Wed, 07 May 2008 08:12:10 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Focus in ASP.NET Controls </title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/18</link>
      <description> To provide even better experience for your Web application users, you need to give them a logical and as simple as possible user interface. One of the common tasks when building effective and friendly web applications is management of control's focus, usually text boxes, buttons, dropdown lists etc. Whatever kind of application you build, you will always need make your UI more efficient. 
 One simple and very familiar sample of using focus to provide...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Tue, 06 May 2008 07:01:24 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Enter Key in ASP.NET </title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/17</link>
      <description> One of the common requests in ASP.NET is to submit a form when visitor hits an Enter key. That could be a case if, for example you want to make Login Screen. It is expected that user just hit enter when he insert a user name and password instead to of forcing him to use a mouse to click login button. If you want to make search function on your web site, it is frequently required to give a possibility to hit enter after you insert a search terms instead...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Tue, 06 May 2008 06:58:30 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Performance tuning tips for database developers</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/16</link>
      <description> Below is my list of the top 15 things I believe developers should do as a matter of course to tune performance when coding. These are the low hanging fruit of SQL Server performance &amp;ndash; they are easy to do and often have a substantial impact. Doing these won&amp;rsquo;t guarantee lightening fast performance, but it won&amp;rsquo;t be slow either. 
 
     Create a primary key on each table you create and unless you are really knowledgeable enough to...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Tue, 06 May 2008 02:23:22 GMT</pubDate>
      <category>Database</category>
    </item>
    <item>
      <title>ASP.NET MVC</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/15</link>
      <description>The Model-View-Controller (MVC) design pattern and Test-Driven Development (TDD) drive the majority of today's enterprise-scale Web applications. The MVC pattern enforces separation of concerns by dividing applications into a model to store and manage business data, views to render and enable the user to interact with data, and controllers to translate user actions to an appropriate set of the model's business data and its view.  
A primary benefit...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Tue, 15 Apr 2008 15:20:07 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Don’t run production ASP.NET Applications with debug=”true” enabled </title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/14</link>
      <description>  One of the things you want to avoid when deploying an ASP.NET application into production is to accidentally (or deliberately) leave the &amp;lt;compilation debug=&amp;rdquo;true&amp;rdquo;/&amp;gt; switch on within the application&amp;rsquo;s web.config file.  
 &amp;nbsp; 
  Doing so causes a number of non-optimal things to happen including:  
 &amp;nbsp; 
  1) The compilation of ASP.NET pages takes longer (since some batch optimizations are disabled)  
  2) Code can...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Wed, 09 Apr 2008 03:05:23 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>GridView Tips and Tricks using ASP.NET 2.0</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/13</link>
      <description>  In this article, we will explore some of the most frequently asked questions about the GridView control. The article discusses ten tips and tricks that you can use while using the GridView control.  
    Tip 1: Add, Update, Delete Records in a Gridview using SqlDataSource    
  By default, the GridView control doesn&amp;rsquo;t have support for inserting new records. However you can use the built-in edit or delete functionality of the GridView control....</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Wed, 02 Apr 2008 08:32:06 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>How to open popup windows in IE/Firefox and return values using ASP.NET and Javascript</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/12</link>
      <description>With the forums flooded with questions of opening a popup window, passing values to the popup window and then return values back to the parent page using both Internet Explorer and Firefox, I decided to take a plunge into the subject and experiment with an easy implementation. This article explains how to transfer values between the Parent page and a Pop-up window. The code has been tested against IE7 and Firefox. Internet Explorer(IE) contains...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Tue, 25 Mar 2008 15:15:00 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
  </channel>
</rss>