﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>C-Sharpcorner Latest Blogs</title><link>http://www.c-sharpcorner.com/</link><description>Watch latest blogs from C-Sharpcorner</description><copyright>© 1999 - 2007  Mindcracker LLC. All Rights Reserved</copyright><item><title>Help Wanted on Forums</title><description>On our forums, we have about 8000 unanswered questions and need your help.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=659</link><pubDate>May 08, 2008</pubDate><author>Mahesh Chand</author></item><item><title>SharePoint Training</title><description>Get trained by industry experts</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=658</link><pubDate>May 08, 2008</pubDate><author>Pradeep Bhaskar</author></item><item><title>Squeeze Ball Animation in XAML</title><description>This XAML code creates a ball that gives an impression of squeezing a sponge ball.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=656</link><pubDate>May 07, 2008</pubDate><author>Mahesh Chand</author></item><item><title>Getting Prime Numbers up to 1,000,000 using F#</title><description>A while ago, I wrote a blog on using C# and LINQ to obtain all prime numbers up to 1,000,000.  In this blog we'll show you the equivalent code in C# without using LINQ.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=655</link><pubDate>May 05, 2008</pubDate><author>Mike Gold</author></item><item><title>Setup and Deployment: How to create a Launch Option in the Finished Dialog</title><description>Aaron Stebner gives us the solution in the link below on how to modify the finished dialog using javascript to allow us to launch our app in a postbuildevent.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=653</link><pubDate>May 02, 2008</pubDate><author>Mike Gold</author></item><item><title>Using GDI+ with F#</title><description>This Blog illustrates how to create a Windows Form in F# and Draw a Rectangle that Positions itself based on a Left Mouse Click.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=647</link><pubDate>Apr 30, 2008</pubDate><author>Mike Gold</author></item><item><title>Inserting New Row in GridView in Asp.net 2.0</title><description>steps:

1) Create the simple web application (asp.net with C#).
2) Create new table (User) in your database.
Column Name 	Data Type
UserId 	int (Pk and AutoIncrement)
UserName 	varchar(50)
Address1 	varchar(50)
EmailAddress 	varchar(50)

3) In your application (.aspx file) put the below code. we have first true the property of gridview (ShowFooter) and put the asp control in to the FooterTemplate. put the one label for display message.Here I not implement the edit command.

  &lt;asp:GridView ID=”GridView1? runat=”server” AutoGenerateColumns=”False” DataKeyNames=”UserID”
                CellPadding=”4? ForeColor=”#333333? GridLines=”None” ShowFooter=”True”&gt;
                &lt;Columns&gt;
                    &lt;asp:TemplateField HeaderText=”UserID” InsertVisible=”False” SortExpression=”UserID”&gt;
                        &lt;ItemTemplate&gt;
                            &lt;asp:Label ID=”lblUserID” runat=”server” Text=’&lt;%# Eval(”UserID”) %&gt;‘&gt;&lt;/asp:Label&gt;
                        &lt;/ItemTemplate&gt;
                    &lt;/asp:TemplateField&gt;
                    &lt;asp:TemplateField HeaderText=”UserName” SortExpression=”UserName”&gt;
                        &lt;EditItemTemplate&gt;
                            &lt;asp:TextBox ID=”txtUserName” runat=”server” Text=’&lt;%# Bind(”UserName”) %&gt;‘&gt;&lt;/asp:TextBox&gt;
                        &lt;/EditItemTemplate&gt;
                        &lt;ItemTemplate&gt;
                            &lt;asp:Label ID=”lblUserName” runat=”server” Text=’&lt;%# Eval(”UserName”) %&gt;‘&gt;&lt;/asp:Label&gt;
                        &lt;/ItemTemplate&gt;
                        &lt;FooterTemplate&gt;
                        &lt;asp:TextBox ID=”txtfooterUserName” runat=”server”&gt;&lt;/asp:TextBox&gt;
                        &lt;%– Here we Put the RequiredFieldValidator for textbox (txtfooterUserName) –%&gt;
                        &lt;asp:RequiredFieldValidator ID=”rfvUserName” runat=”server” ControlToValidate=”txtfooterUserName” ErrorMessage=”*”&gt;&lt;/asp:RequiredFieldValidator&gt;
                        &lt;/FooterTemplate&gt;
         </description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=650</link><pubDate>May 01, 2008</pubDate><author>Amit  Patriwala</author></item><item><title>DotNet Friends</title><description>This is special blog for dotnet friends.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=649</link><pubDate>May 01, 2008</pubDate><author>Amit  Patriwala</author></item><item><title>Welcome to the Google Driven Development (GDD) Model</title><description>The growing popularity of the Agile Development, Feature Driven Development (FDD) and Extreme Programming and other Rapid Application Development (RAD) models pushing developers away from the traditional software development life cycle (SDLC) and system analysis and development (SAD). </description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=602</link><pubDate>Mar 20, 2008</pubDate><author>Mahesh Chand</author></item><item><title>SEO Guides and Resources</title><description>Here is a list of some SEO related resources and free guides.</description><link>http://www.c-sharpcorner.com/Blogs/BlogDetail.aspx?BlogId=644</link><pubDate>Apr 28, 2008</pubDate><author>Mahesh Chand</author></item></channel></rss>