Click here to Skip to main content
15,892,161 members
Articles / Web Development / ASP.NET

Custom paging with ASP.NET GridView

Rate me:
Please Sign up or sign in to vote.
4.69/5 (29 votes)
26 Jun 2012CPOL2 min read 183.3K   4.3K   37  
Easy way to implement ASP.NET GridView paging .
<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <connectionStrings >
    <add name="myConnection" connectionString="Data Source=TANWEERAKHTER;Initial Catalog=Northwind;Persist Security Info=True;User ID=sa;Password=786" providerName="System.Data.SqlClient"/>
  </connectionStrings>
  <appSettings>
    <add key="URL" value="http://localhost:52236/braviPaging/Default.aspx"/>
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
  </system.web>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer LIFELONG Pakistan, Islamabad
Pakistan Pakistan
Software Engineer at LIFELONG Pakistan,

http://tanweerbravi.blogspot.com

Comments and Discussions