C
CKKwan
1. A user log in to my page.
2. Right click at one of the link and bring up another IE window.
3. The two IE Windows are under the same session.
4. I can access the same session valirables using Page.Session["abc"].
Question:
Can I synchronize them using
lock (Page.Session)
{
Page.Session["abdc"];
}
If not, how?
TIA
2. Right click at one of the link and bring up another IE window.
3. The two IE Windows are under the same session.
4. I can access the same session valirables using Page.Session["abc"].
Question:
Can I synchronize them using
lock (Page.Session)
{
Page.Session["abdc"];
}
If not, how?
TIA