Click here to Skip to main content
15,880,972 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionDealing with browser back button after logging out Pin
dptalt28-Sep-09 8:47
dptalt28-Sep-09 8:47 
AnswerRe: Dealing with browser back button after logging out Pin
Parwej Ahamad28-Sep-09 9:19
professionalParwej Ahamad28-Sep-09 9:19 
AnswerRe: Dealing with browser back button after logging out Pin
Abhishek Sur28-Sep-09 9:57
professionalAbhishek Sur28-Sep-09 9:57 
QuestionRe: Dealing with browser back button after logging out Pin
dptalt29-Sep-09 1:48
dptalt29-Sep-09 1:48 
QuestionEditor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala28-Sep-09 6:15
sskala28-Sep-09 6:15 
AnswerRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
Abhishek Sur28-Sep-09 7:00
professionalAbhishek Sur28-Sep-09 7:00 
GeneralRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala28-Sep-09 7:06
sskala28-Sep-09 7:06 
AnswerRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
Abhishek Sur28-Sep-09 7:12
professionalAbhishek Sur28-Sep-09 7:12 
Have you check removing the line which repopulates the data again.

Also try to do another this
In page_Load write

if (!IsPostBack)
{
InitializePage();
}
PopulateReportingPeriodTasksGrid();
}


and
protected void ReportingPeriodTasksGrid_PageIndexChanged(object sender, Infragistics.WebUI.UltraWebGrid.PageEventArgs e)
{
this.ReportingPeriodTasksGrid.DisplayLayout.Pager.CurrentPageIndex = e.NewPageIndex;
}


I think this might be the problem, you are setting the CurrentPageIndex before the data being bound to the control. I am curious if this is the problem with you??

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

GeneralRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala28-Sep-09 7:53
sskala28-Sep-09 7:53 
GeneralRe: Editor Controls getting lost when rebinding the grid (Infragistics Ultrawebgrid) Pin
sskala29-Sep-09 3:44
sskala29-Sep-09 3:44 
QuestionError - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 5:59
$unil Dhiman28-Sep-09 5:59 
AnswerRe: Error - can not create enum dynamically Pin
N a v a n e e t h28-Sep-09 6:34
N a v a n e e t h28-Sep-09 6:34 
GeneralRe: Error - can not create enum dynamically Pin
Abhishek Sur28-Sep-09 6:43
professionalAbhishek Sur28-Sep-09 6:43 
GeneralRe: Error - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 19:10
$unil Dhiman28-Sep-09 19:10 
GeneralRe: Error - can not create enum dynamically Pin
N a v a n e e t h28-Sep-09 20:21
N a v a n e e t h28-Sep-09 20:21 
GeneralRe: Error - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 20:44
$unil Dhiman28-Sep-09 20:44 
AnswerRe: Error - can not create enum dynamically Pin
Michael Eber28-Sep-09 6:43
Michael Eber28-Sep-09 6:43 
GeneralRe: Error - can not create enum dynamically Pin
$unil Dhiman28-Sep-09 18:44
$unil Dhiman28-Sep-09 18:44 
AnswerPlease Don't Cross Post Pin
Abhijit Jana28-Sep-09 7:52
professionalAbhijit Jana28-Sep-09 7:52 
QuestionExtracting innerHTML from a div elements that contains dynamic controls Pin
compninja2528-Sep-09 5:32
compninja2528-Sep-09 5:32 
AnswerRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
N a v a n e e t h28-Sep-09 5:48
N a v a n e e t h28-Sep-09 5:48 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls [modified] Pin
compninja2528-Sep-09 6:16
compninja2528-Sep-09 6:16 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
Abhishek Sur28-Sep-09 6:32
professionalAbhishek Sur28-Sep-09 6:32 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
N a v a n e e t h28-Sep-09 6:41
N a v a n e e t h28-Sep-09 6:41 
GeneralRe: Extracting innerHTML from a div elements that contains dynamic controls Pin
compninja2528-Sep-09 10:52
compninja2528-Sep-09 10:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.