Hi all. I need your help and my question is that can a web page in a subweb access sesion value created from parent web side?
Let say I have web site A that has subweb B. In A i have and 2 ASP files, Set.asp and get.asp. i also have the get.asp in subweb B.
'Set.asp
<%@Language=VBScript>
<%
Response.Session("myname") = "AAAAAAA"
%>
'get.asp
<%@Language=VBScript>
<%
response.write(Request.Session("myname"))
%>
when i run set.asp then get.asp , the get.asp will write AAAAAAA in the browser (every thing OK here).
when i run set.asp in A then Get.asp in B i do not get the AAAAAAA as above.
is there any way to achieve this (access session from subweb)??. if not is there way to create session into a subweb
Any help, reference would be much appreciated.
Thank you.
Let say I have web site A that has subweb B. In A i have and 2 ASP files, Set.asp and get.asp. i also have the get.asp in subweb B.
'Set.asp
<%@Language=VBScript>
<%
Response.Session("myname") = "AAAAAAA"
%>
'get.asp
<%@Language=VBScript>
<%
response.write(Request.Session("myname"))
%>
when i run set.asp then get.asp , the get.asp will write AAAAAAA in the browser (every thing OK here).
when i run set.asp in A then Get.asp in B i do not get the AAAAAAA as above.
is there any way to achieve this (access session from subweb)??. if not is there way to create session into a subweb
Any help, reference would be much appreciated.
Thank you.