Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Session Variables Not working in Netscape

Status
Not open for further replies.

essdee

Programmer
Nov 28, 2002
11
IN
I have an ASP/SQL Server Based site which is hosted on Windows 2000 server. I am making use of Session variables to maintain state information. In 90% of the cases I am using the POST method to transfer data from one page to other and in 10% cases I am using GET method. The Site is working perfectly fine in IE, but in netscape the Session variables are not created.


Any Idea as to how I can get around this problem.


Any Help is thanked in advance.
 
it shldn't happen that way.
try to create a session, assign a value to it and print it out.

example.

session("test") = "ok"

response.write("session = " & session("test"))

see what it printed out in netscape.
 
there may be another error,
check if cookies are enabled in netscape.

Known is handfull, Unknown is worldfull
 
I am sorry. that was not the problem. On rechecking i found that it is the VB Script which is not getting executed.

Once again Sorry and thanks for taking the trouble to answer to the post
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top