Click here to Skip to main content
15,915,336 members

Comments by Member 12324523 (Top 85 by date)

Member 12324523 17-Aug-19 5:17am View    
it is not asp .net its mvc





Member 12324523 1-Feb-18 5:51am View    
Deleted
i need to call in this way
protected void grd2_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
grd2.PageIndex = e.NewPageIndex;
string Eve1 = ViewState["SecondStatus"].ToString();
if (!string.IsNullOrEmpty(Eve1))
{
if (Eve1 == "CompletedBatches")
{
lnkCompleted1_Command(sender, e);

}
else if (Eve1 == "Runningbatches")
{
lnkRunningbatches_Command(sender, e);
}
else if (Eve1 == "NewBatches")
{
lnkNewBatches_Command(sender, e);
}
}
grd2.DataBind();
}
Member 12324523 1-Feb-18 5:20am View    
Deleted
could you please share some sample code
Member 12324523 31-Jan-18 7:32am View    
Every thing is done only thing which was left is suppose if ui have 15 pages in gridview and when i am in 10th page of gridview if i click a row in gridview of that 10th page i will be redirected to another page where i have a back button in that page and again if i click that back button i need to come to previous page which is working but i am going to first page in paging of gridview instead i need to go to 10th page on clicking back button
Member 12324523 31-Jan-18 6:07am View    
my question is different and the anwser you shared is different