Objects in session can be easily accessed across aspx pages. 
Here is how I store and access my objects:
 
     Object myObject = Object (some thing).
    Session["MyObj"] = myObject
 
This object can be accessed in another page (code behind):
 
      Object myObject = Session["MyObj"] as Object 
 
Questions: Can I access this object stored in Session from my
JavaScripts/Functions in my aspx page? Or is there any alternative?
Here, I'd like to communicate between my aspx and aspx.cs accessing
same object.
 
Thanks!
 
Eva
 


[Non-text portions of this message have been removed]



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to