Click here to Skip to main content
15,887,596 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionData Validation Controls not working in Windows 7 machine Pin
Robymon31-Mar-10 23:10
Robymon31-Mar-10 23:10 
AnswerRe: Data Validation Controls not working in Windows 7 machine Pin
JHizzle31-Mar-10 23:37
JHizzle31-Mar-10 23:37 
GeneralRe: Data Validation Controls not working in Windows 7 machine Pin
Robymon1-Apr-10 0:16
Robymon1-Apr-10 0:16 
QuestionItem command not firing repeater control pop up extender Pin
rahul_miche31-Mar-10 22:53
rahul_miche31-Mar-10 22:53 
AnswerRe: Item command not firing repeater control pop up extender Pin
michaelschmitt1-Apr-10 6:46
michaelschmitt1-Apr-10 6:46 
AnswerRe: Item command not firing repeater control pop up extender Pin
T M Gray1-Apr-10 7:47
T M Gray1-Apr-10 7:47 
Questionsave page state after post back Pin
Abdul Rahman Hamidy31-Mar-10 22:38
Abdul Rahman Hamidy31-Mar-10 22:38 
AnswerRe: save page state after post back Pin
R. Giskard Reventlov31-Mar-10 23:21
R. Giskard Reventlov31-Mar-10 23:21 
If you are using a button to trigger the postback you could examine the data in each listbox within that event and store the data in some way (Session, ViewState, etc) and repopulate the boxes during the OnLoad event taking into account that this is a PostBack so you might have a method like:

protected override void OnLoad(EventArgs e)
{
	base.OnLoad(e);

	if (IsPostBack)
	{
		// Populate the controls with the data saved on the postback event.
	}
	else
	{
		// Do the initial databind for the controls.
	}
}


That should get you started.
me, me, me

"The dinosaurs became extinct because they didn't have a space program. And if we become extinct because we don't have a space program, it'll serve us right!"
Larry Niven

AnswerRe: save page state after post back Pin
Venkatesh Mookkan1-Apr-10 0:54
Venkatesh Mookkan1-Apr-10 0:54 
GeneralRe: save page state after post back Pin
Abdul Rahman Hamidy2-Apr-10 18:10
Abdul Rahman Hamidy2-Apr-10 18:10 
Questionhow to fetch html text into string variable Pin
Amit Spadez31-Mar-10 21:36
professionalAmit Spadez31-Mar-10 21:36 
AnswerRe: how to fetch html text into string variable Pin
Arindam Tewary31-Mar-10 22:02
professionalArindam Tewary31-Mar-10 22:02 
AnswerRe: how to fetch html text into string variable Pin
PSK_31-Mar-10 22:06
PSK_31-Mar-10 22:06 
AnswerRe: how to fetch html text into string variable Pin
MyDevBank31-Mar-10 22:18
MyDevBank31-Mar-10 22:18 
AnswerRe: how to fetch html text into string variable Pin
Mohan H Prajapati5-Apr-10 23:51
Mohan H Prajapati5-Apr-10 23:51 
Question[help]ListView Layout Problem [modified] Pin
calvenyow31-Mar-10 21:30
calvenyow31-Mar-10 21:30 
QuestionThe Client does not Download the Lastest Upload File Pin
Xiaoming Qian31-Mar-10 20:33
Xiaoming Qian31-Mar-10 20:33 
AnswerRe: The Client does not Download the Lastest Upload File Pin
Venkatesh Mookkan31-Mar-10 20:42
Venkatesh Mookkan31-Mar-10 20:42 
AnswerRe: The Client does not Download the Lastest Upload File [modified] Pin
Arindam Tewary31-Mar-10 20:44
professionalArindam Tewary31-Mar-10 20:44 
AnswerRe: The Client does not Download the Lastest Upload File Pin
PSK_31-Mar-10 22:11
PSK_31-Mar-10 22:11 
QuestionASP.NET Control in MVC Pin
M. K. BASHER31-Mar-10 19:30
M. K. BASHER31-Mar-10 19:30 
AnswerRe: ASP.NET Control in MVC Pin
Sandeep Mewara31-Mar-10 19:40
mveSandeep Mewara31-Mar-10 19:40 
QuestionWeb Service Not Working [modified] Pin
BlitzPackage31-Mar-10 16:42
BlitzPackage31-Mar-10 16:42 
AnswerRe: Web Service Not Working Pin
Sandeep Mewara31-Mar-10 19:43
mveSandeep Mewara31-Mar-10 19:43 
GeneralRe: Web Service Not Working Pin
BlitzPackage1-Apr-10 2:00
BlitzPackage1-Apr-10 2:00 

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.