<div>
hi,
actually i have two pages home page and index page.
When i search from Home page, am able to redirect to index page getting data in the index page and paging is also working perfectly.
But when i am search from index page the data is displaying data on the same(index page) , paging is also displaying but the paging is not working. when i clicking on the page 2 or 3 it is redirecting to index.aspx without any data.
this is my index.aspx.cs page
public partial class Index_Page : System.Web.UI.Page
{
int position = 0;
public static PagedDataSource paged_datasource;
PagedDataSource pds = new PagedDataSource();
#region Methods
public string[] Request_QueryString()
{
string[] query_string = new string[2];
query_string[0] = Request.QueryString["Category"];
...
Go to the complete details ...