我有一个网址 www.myexample.in 。我的一个页面导航到新的子域 test.myexample.in 。在我的子域的 default.aspx 页面上,我检查了我在父域(www.myexample.in)中创建的会话。现在,当打开子域的页面时,没有找到这样的会话值,并且session["employeeid"]
变为空白,我之前将其放入了employeeId。
在父域中我创建了
session["employeeid"]="1233";
现在,在我的项目中打开子域名页面时,我得到空白值
string EmployeeId = Convert.ToString(session["employeeid"]);
//EmployeeId is blank here
请告诉我如何将有价值的session["employeeid"]
传递给我的子域名。我在Web配置中使用状态服务器
答案 0 :(得分:0)
在web.config
<httpCookies domain=".myexample.in"/>