Click here to Skip to main content
15,889,808 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.NET problem Pin
Dinesh Mani10-Jan-10 18:16
Dinesh Mani10-Jan-10 18:16 
GeneralRe: ASP.NET problem Pin
theOzLizard10-Jan-10 23:20
theOzLizard10-Jan-10 23:20 
GeneralRe: ASP.NET problem Pin
Dinesh Mani10-Jan-10 23:34
Dinesh Mani10-Jan-10 23:34 
GeneralRe: ASP.NET problem Pin
theOzLizard11-Jan-10 9:13
theOzLizard11-Jan-10 9:13 
GeneralRe: ASP.NET problem Pin
theOzLizard11-Jan-10 11:48
theOzLizard11-Jan-10 11:48 
GeneralRe: ASP.NET problem Pin
Dinesh Mani11-Jan-10 18:36
Dinesh Mani11-Jan-10 18:36 
GeneralRe: ASP.NET problem Pin
theOzLizard11-Jan-10 21:37
theOzLizard11-Jan-10 21:37 
GeneralRe: ASP.NET problem Pin
theOzLizard12-Jan-10 11:48
theOzLizard12-Jan-10 11:48 
Getting closer to the culprit.

Seems like I am getting a double dose of Session_Start which instantiates new session objects , OK, this is not a real problem at start up because in the second attempt new session objects are not instantiated.

The problem is (Fire Fox) when I do the Response.Redirect to the results page at this point the session objects should still have the values but for some reason Fire Fox causes a new Session_Start to be fired which in turn generates new session objects, when the test is done in the page load event of the results page the session objects are empty.

Internet Explorer and Opera does NOT fire a new Session_Start event when Response.Redirect is called...

NameValueCollection nvc = Request.QueryString;

if(!IsPostBack)
   {
   if(SelectedButtons.selecteditems.Count > 0)
 {
 if(nvc.Get("response") == "OK")  //never gets in here...
   {
   setInnerHtml();
   }
     }
   }


Now we know what the problem is, has anyone seen this type of behavior, does any know how to stop Session_start being fired, could window.location be the source for firing a new Session_start

Why does IE and Opera behave and not Fire Fox or Sea Monkey?

theLizard

GeneralRe: ASP.NET problem Pin
Dinesh Mani17-Jan-10 19:06
Dinesh Mani17-Jan-10 19:06 
GeneralRe: ASP.NET problem Pin
theOzLizard17-Jan-10 22:02
theOzLizard17-Jan-10 22:02 
GeneralRe: ASP.NET problem Pin
Dinesh Mani18-Jan-10 19:35
Dinesh Mani18-Jan-10 19:35 
QuestionHiding RequiredFieldValidators in the design view. Pin
paper6710-Jan-10 10:17
paper6710-Jan-10 10:17 
AnswerRe: Hiding RequiredFieldValidators in the design view. Pin
Abhishek Sur10-Jan-10 11:18
professionalAbhishek Sur10-Jan-10 11:18 
QuestionDevelop a webapp for firefox only Pin
gerrybrennan10-Jan-10 10:01
gerrybrennan10-Jan-10 10:01 
AnswerRe: Develop a webapp for firefox only Pin
Abhishek Sur10-Jan-10 11:22
professionalAbhishek Sur10-Jan-10 11:22 
AnswerRe: Develop a webapp for firefox only Pin
April Fans11-Jan-10 15:48
April Fans11-Jan-10 15:48 
QuestionEasy-to-implement videostream player Pin
lvq6849-Jan-10 22:56
lvq6849-Jan-10 22:56 
AnswerRe: Easy-to-implement videostream player Pin
kadaoui el mehdi10-Jan-10 1:15
kadaoui el mehdi10-Jan-10 1:15 
GeneralRe: Easy-to-implement videostream player Pin
lvq68410-Jan-10 1:41
lvq68410-Jan-10 1:41 
Questionupdating a repeater Pin
benams9-Jan-10 21:14
benams9-Jan-10 21:14 
AnswerRe: updating a repeater Pin
Brij9-Jan-10 23:19
mentorBrij9-Jan-10 23:19 
GeneralRe: updating a repeater Pin
benams10-Jan-10 2:39
benams10-Jan-10 2:39 
GeneralRe: updating a repeater Pin
Brij10-Jan-10 16:27
mentorBrij10-Jan-10 16:27 
Questionpage refreshing problem Pin
benams9-Jan-10 21:08
benams9-Jan-10 21:08 
AnswerRe: page refreshing problem Pin
Brij9-Jan-10 23:16
mentorBrij9-Jan-10 23:16 

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.