need2progam
Programmer
I have a parent (ASPX) Page where I call window.showModalDialog ...
var MyArgs = new Array(Parm1, Parm2, Parm3);
var WinSettings =
"center:yes;dialogHeight:400px;dialogWidth:400px" ;
var URL = "PopUpChild.aspx";
//code stops here until popped window is closed
var MyArgs = window.showModalDialog(URL, MyArgs, WinSettings);
I also have in code behind of the parent and child page..
Response.Write(Me.Session.SessionID)
In development I run the parent page click a link pops the child. They both have the same session ID. I deploy to the web server and the parent page has a valid session ID the child page has nothing. I was almost expecting a different session ID or something because things were not working on the child page… but it I have nothing. I did not think I could have a window spawned with out a session. How does that happen?
Any ideas why I am loosing session when popping a window through show modal dialog method in a deployed environment?
Thanks in advance for any help you can give.
Carly
var MyArgs = new Array(Parm1, Parm2, Parm3);
var WinSettings =
"center:yes;dialogHeight:400px;dialogWidth:400px" ;
var URL = "PopUpChild.aspx";
//code stops here until popped window is closed
var MyArgs = window.showModalDialog(URL, MyArgs, WinSettings);
I also have in code behind of the parent and child page..
Response.Write(Me.Session.SessionID)
In development I run the parent page click a link pops the child. They both have the same session ID. I deploy to the web server and the parent page has a valid session ID the child page has nothing. I was almost expecting a different session ID or something because things were not working on the child page… but it I have nothing. I did not think I could have a window spawned with out a session. How does that happen?
Any ideas why I am loosing session when popping a window through show modal dialog method in a deployed environment?
Thanks in advance for any help you can give.
Carly