.NET Tutorials, Forums, Interview Questions And Answers
HomeTutorialArticlesForumInterview QuestionCode SnippetsTechnology NewsFun Zone Poll Certification Search
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Home >> Code Snippets >> DataGrid >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

Auto Generate Row Number in GridView in asp.net.

Posted By :Amit Mehra      Posted Date :29/06/2009   Points :10   Category: DataGrid    URL: http://www.dotnetspark.com
    


Auto Generate Row Number in GridView in asp.net. This Code explains how to add auto generate serial number in a gridview dynamically using code.

All you have to add one template column and inside ItemTemplate tag add this lines of code.

<%# Container.DataItemIndex + 1 %>

Step 1 : Drag GridView from toolbox of Visual studio in you asp.net web page.

Step 2 : Go to the properties of Gridview and Click on Columns than add Template Column. If you wish you can set its AutoGenerateColumns Property to fasle.

Step 3: Now go the .aspx View and you can add HeaderTemplate and ItemTemplate of Newly add Template column and add this lines of code inside ItemTemplate Tag

<%# Container.DataItemIndex + 1 %>

After adding template Template column and above code inside itemTemplate tag your TemplateField code will look like this

<asp:TemplateField>
<HeaderTemplate>
Row No.
</
HeaderTemplate>
<ItemTemplate>
<%# Container.DataItemIndex + 1 %>
</
ItemTemplate>
</asp:TemplateField>

 

See the full GridView Code

 

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" >
<Columns>
<asp:TemplateField>
<HeaderTemplate>
Row No.
</HeaderTemplate>
<ItemTemplate>
<%# Container.DataItemIndex + 1 %>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="FName" HeaderText="First Name" />
<asp:BoundField DataField="LName" HeaderText="Last Name"/>
</Columns>
</asp:GridView>

Here is the picture if you run the application

Hope this will helpful to all.


Featured Articles


Best Practices No 5: - Detecting .NET application memory leaks
Memory leaks in .NET application have always being programmer's nightmare. Memory leaks are biggest problems when it comes to production servers. Productions servers normally need to run with least down time. Memory leaks grow slowly and after sometime they bring down the server by consuming huge chunks of memory. Maximum time people reboot the system, make it work temporarily and send a sorry note to the customer for the downtime. ... Read More
.NET Best Practice No: 1:- Detecting High Memory consuming functions in .NET code
One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides. Ok, said and done one of the biggest task is to understand which function, assembly or class has consumed how much memory. In this tutorial we will see how we can find which functions consume how much memory. This article discusses the best practices involved using CLR profiler for studying memory allocation.... Read More
How to improve your LINQ query performance by 5 X times ?
LINQ has been criticized by many early adopters for its performance issues. Well if you are just going to drag and drop using DBML code generator I am sure you will land up in to mess. Try doing this make a simple LINQ to SQL project using DBML and see your SQL profiler, I am sure you will never like to touch DBML code generator again. ... Read More
Responses
Author: invincible0         Company URL: http://www.dotnetspark.com
Posted Date: 09/08/2009

thanks a lot for the useful post.. it was very helpful
Author: muthu         Company URL: http://www.theinterviewquestions.com
Posted Date: 15/03/2010

thanks its a nice post.


Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend