HttpContext.Current.Session with load balancing

shawcheese

New Member
I'm observing a weird situation, and I'm hoping someone has some insight. It's not an ideal situation (trying to support legacy stuff). What I'm observing is illustrated in this example:I've got one server in my load balanced server pool. In an outer page loaded from the load balanced url, I'm stuffing some values into HttpContext.Current.Session in Page_Load.On that page is an iframe which loads an inner page from the specific server url (the same server that the load balanced page hit). HttpContext.Current.Session in Page_Load of the inner page does not have the values I just stuffed into it from the outer page.I used to think it would be specific to the machine per whatever's in the user's cookie. Does HttpContext.Current.Session depend on the url?
 
Back
Top