How to maintain state of silverlight application on browser back button?
I have silverlight control hosted on web page. When I explore this control and go to some other web page, when I come back to same page using back button I want to maintai开发者_JS百科n the same state of the control as before I went to another page.
How this be done? Thanks in advance.
Regards, -Shwetank
You can use IsolatedStorage to create persistent data for your control in client's computer.
精彩评论