<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: GridView Custom Paging in ASP.NET 3.5 with SQL Server Stored Procedure</title>
	<atom:link href="http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html</link>
	<description>knowledge Is Power</description>
	<lastBuildDate>Tue, 24 Jan 2012 07:32:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Bijay</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/comment-page-1#comment-1002</link>
		<dc:creator>Bijay</dc:creator>
		<pubDate>Sun, 02 Oct 2011 09:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316#comment-1002</guid>
		<description>Hi, Thanks for the article, But I am facing a small problem. Suppose I have 22 records and my records per page is 5 then it is showing till 4 pages that is last 2 recored are nt showing. At that time it should show 5 pages and in the last page it should show 2 records. I guess some modification needed in populateList() method..

Waiting 4 ur reply</description>
		<content:encoded><![CDATA[<p>Hi, Thanks for the article, But I am facing a small problem. Suppose I have 22 records and my records per page is 5 then it is showing till 4 pages that is last 2 recored are nt showing. At that time it should show 5 pages and in the last page it should show 2 records. I guess some modification needed in populateList() method..</p>
<p>Waiting 4 ur reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anjum Rizwi</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/comment-page-1#comment-867</link>
		<dc:creator>Anjum Rizwi</dc:creator>
		<pubDate>Thu, 26 May 2011 10:27:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316#comment-867</guid>
		<description>Do u have any idea how to use numeric paging that we have with grid view. 
If we have too much pages than there is draw back with DropDownList.</description>
		<content:encoded><![CDATA[<p>Do u have any idea how to use numeric paging that we have with grid view.<br />
If we have too much pages than there is draw back with DropDownList.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish Agrahari</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/comment-page-1#comment-694</link>
		<dc:creator>Manish Agrahari</dc:creator>
		<pubDate>Wed, 16 Feb 2011 10:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316#comment-694</guid>
		<description>hi, 

following is script for creating table for this article.

CREATE TABLE tblStudent
(
SrNo int identity(1001,1) primary key,
sName varchar(50),	
sAddress varchar(500),	 	
ClassId int
)

insert into tblStudent(sName,SAddress,ClassId)
values
(&#039;Manish&#039;,&#039;noida&#039;,2)

select * from tblStudent

CREATE TABLE tblClass
(
ClassId int identity(1,1) primary key,
ClassName varchar(100)
)

insert into tblClass(ClassName)
values
(&#039;Information Technology&#039;)

select * from tblStudent


Thanks
Manish Agrahari</description>
		<content:encoded><![CDATA[<p>hi, </p>
<p>following is script for creating table for this article.</p>
<p>CREATE TABLE tblStudent<br />
(<br />
SrNo int identity(1001,1) primary key,<br />
sName varchar(50),<br />
sAddress varchar(500),<br />
ClassId int<br />
)</p>
<p>insert into tblStudent(sName,SAddress,ClassId)<br />
values<br />
(&#8216;Manish&#8217;,'noida&#8217;,2)</p>
<p>select * from tblStudent</p>
<p>CREATE TABLE tblClass<br />
(<br />
ClassId int identity(1,1) primary key,<br />
ClassName varchar(100)<br />
)</p>
<p>insert into tblClass(ClassName)<br />
values<br />
(&#8216;Information Technology&#8217;)</p>
<p>select * from tblStudent</p>
<p>Thanks<br />
Manish Agrahari</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UpsideDownTire</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/comment-page-1#comment-626</link>
		<dc:creator>UpsideDownTire</dc:creator>
		<pubDate>Thu, 13 May 2010 05:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316#comment-626</guid>
		<description>Like I said, this article has been a good learning tool.  Here&#039;s a change in your code that seems to work for me:

I added a check for &quot; if (!IsPostBack) &quot;

[code]
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            ddlJumpToPage.Items.Clear();
            int TotalRows = this.BindResult(1);
            this.populateList(TotalRows);
        }
    }

[/code]</description>
		<content:encoded><![CDATA[<p>Like I said, this article has been a good learning tool.  Here&#8217;s a change in your code that seems to work for me:</p>
<p>I added a check for &#8221; if (!IsPostBack) &#8221;</p>
<p>[code]<br />
    protected void Page_Load(object sender, EventArgs e)<br />
    {<br />
        if (!IsPostBack)<br />
        {<br />
            ddlJumpToPage.Items.Clear();<br />
            int TotalRows = this.BindResult(1);<br />
            this.populateList(TotalRows);<br />
        }<br />
    }</p>
<p>[/code]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UpsideDownTire</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/comment-page-1#comment-625</link>
		<dc:creator>UpsideDownTire</dc:creator>
		<pubDate>Thu, 13 May 2010 04:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316#comment-625</guid>
		<description>In regards to the &quot;PageNumberChanged&quot; vs. &quot;PageChanged&quot; I mentioned before; I see now that your download code is more correct.  However, the code presented in the article above is not.  Just thought you should know.

Still debugging the GridView *always* showing the first page of the record set.

:)</description>
		<content:encoded><![CDATA[<p>In regards to the &#8220;PageNumberChanged&#8221; vs. &#8220;PageChanged&#8221; I mentioned before; I see now that your download code is more correct.  However, the code presented in the article above is not.  Just thought you should know.</p>
<p>Still debugging the GridView *always* showing the first page of the record set.</p>
<p> <img src='http://www.tipsntracks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UpsideDownTire</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/comment-page-1#comment-624</link>
		<dc:creator>UpsideDownTire</dc:creator>
		<pubDate>Thu, 13 May 2010 04:24:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316#comment-624</guid>
		<description>Your article,  Chetankumar Akarte, is a great learning tool for me.  But I believe I found a typo:

protected void PageChanged(object sender, EventArgs e)

should be

protected void PageNumberChanged(object sender, EventArgs e)

I am also having a problem with the grid binding to the data, I am always getting just the first (page) records no matter which page number is selected in the ddlJumpToPage control.

Any ideas?

UDT
 :)</description>
		<content:encoded><![CDATA[<p>Your article,  Chetankumar Akarte, is a great learning tool for me.  But I believe I found a typo:</p>
<p>protected void PageChanged(object sender, EventArgs e)</p>
<p>should be</p>
<p>protected void PageNumberChanged(object sender, EventArgs e)</p>
<p>I am also having a problem with the grid binding to the data, I am always getting just the first (page) records no matter which page number is selected in the ddlJumpToPage control.</p>
<p>Any ideas?</p>
<p>UDT<br />
 <img src='http://www.tipsntracks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

