Я предполагаю, что вы делаете постбэк, а все на стороне сервера ...
Это двухэтапный процесс ...
Сначала в событии OnClick для нажатия на статью поместите индекс страницы в переменную сеанса.
Во-вторых, в событии RadRrid PreRender получить индекс страницы из ранее установленной переменной сеанса.
// Set the page index, call this on your OnClick event
private void SetRadGridPageIndex(int PageIndex)
{
Session["RadGridCurrentPageIndex"] = PageIndex;
}
// Get the page index, call this on RadGrid's PreRender event
// Don't forget to Rebind the RadGrid
private void GetRadGridPageIndex()
{
// Go to the previously selected page
if (Session["RadGridCurrentPageIndex"] != null)
{
this.RadGrid1.CurrentPageIndex = Convert.ToInt32(Session["RadGridCurrentPageIndex"]);
this.RadGrid1.MasterTableView.Rebind();
}
}