session variable value cleared ?
hi,
my problem is that when i set a session variabe just before redirect to a URL it lost the session variable. same think is working fine on XP machine i have 2k with SP4 machine please try to solve it
sess_test.asp
<html><body>
<% Session("Sin") = "Hoo"
Response.Redirect "http://localhost/sg/sess_Result.asp" %>
</body></HTML>
sess_result.asp
<HTML><BODY><title> Result Page </title>
<%= "Here session Variable Result=" & Session("Sin")%>
</BODY></HTML>
:(
azeem
|