<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Dot Net KB (ASP.NET) </title>
    <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/category/1/page/2</link>
    <description>home</description>
    <language>en-US</language>
    <pubDate>Tue, 06 Jan 2009 03:59:40 GMT</pubDate>
    <lastBuildDate>Tue, 06 Jan 2009 03:59:40 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>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>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>
    <item>
      <title>Compare Server.Transfer  With Response.Redirect</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/11</link>
      <description>If you read a lot of industry magazines and ASP.NET code samples, you may find that, although the majority use Response.Redirect to send the user to another page, some seem to prefer the rather mysterious-sounding Server.Transfer. So, what's the difference?  
 
Well, Response.Redirect simply sends a message down to the browser, telling it to move to another page. So, you may run code like:  
 
Response.Redirect(&amp;quot;WebForm2.aspx&amp;quot;)  
or...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Wed, 27 Feb 2008 02:33:30 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
    <item>
      <title>Performance Testing Guidance for Web Applications</title>
      <link>http://dot-net.shareknowledges.com/166/section-Home/Dot-Net-KB.aspx/7</link>
      <description>This guide covers Microsoft's recommended approach for implementing performance testing for Web applications. These provide steps for managing and conducting performance testing. For simplification and tangible results, they are broken down into activities with inputs, outputs, and steps. You can use the steps as a baseline or to help you evolve your own process. The performance-testing approach used in this guide consists of the following activities...</description>
      <dc:creator>FengLiN</dc:creator>
      <pubDate>Wed, 13 Feb 2008 14:02:10 GMT</pubDate>
      <category>ASP.NET</category>
    </item>
  </channel>
</rss>