,
I found some amazing problem with Netscape 8.1. I had made a test Application in ASP.NET & printed the session ID. The page have a link from which i open a new page(Using Window.Open of JavaScript) & on second page also i had printed the Session ID.
While i had executed the Test Applicatiaon, i got some unexpected result while using Netscape 8.1 with IE Rendering. In this case the Session ID of the New Page was change from the Parent Page.
While i had used Firefox Rendering the Session ID of both the page was same.
Is there some configuration setting problem or some other issue is there.
I had gone through the cookie setting & deleted the existing cookie but with IE rendering i am getting the same Problem.
The Session ID changes on every Click.
Is netscape browser detects the "window.open" as new client request, because it issue a new session ID.
I am sending the sample code for page 1 & page 2 in ASP.
<!--This is Page1.asp-->
<HTML>
<HEAD>
<TITLE>Page 1</TITLE>
<script language="javascript">
function fncOpen()
{
window.open("page2.asp");
}
</script>
</HEAD>
<a href="#" onClick ="fncOpen();"> Click Here</a>
<%=Session.SessionID%>
</HTML>
<!--End of Page1.asp-->
<!--This is Page2.asp-->
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<%=Session.SessionID%>
</HTML>
<!--End of Page2.asp-->
While Using NetScape8.1 with IE Rendering i got the different Session ID on Page1.asp & Page2.asp but with Netscape 8.1(Firefox Rendering)/IE 6.0/Firefox 1.1 i got the same Session ID .
One more issue, when i am accessing the site with http://localhost/page1.asp the session value got change while accessing the page with IP address of my machine i.e. http://192.168.1.32/page1.asp the session value remains same for Netscape 8.1(IE Rendering).
What actually the problem is, i couldn't found.
Any feedback is appreciated.
UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)

