About Frames
-
I have 2 Frames.One of the frame has Treeview control and another Frame will have the respective aspx page of the Node of the treeview control placed in frame.When i perform some action(eg:Adding of 'user') on the particular aspx page,that added user is added to xml. I want the first Frame (Treeview control) to be updated.So it need to reload. How to reload first Frame when some modifications are done in second frame using javascript.
-
I have 2 Frames.One of the frame has Treeview control and another Frame will have the respective aspx page of the Node of the treeview control placed in frame.When i perform some action(eg:Adding of 'user') on the particular aspx page,that added user is added to xml. I want the first Frame (Treeview control) to be updated.So it need to reload. How to reload first Frame when some modifications are done in second frame using javascript.
Use cross frame navigation from the client. On way to do this is to populate a public variable from the server side with the necessary javascript after you have done what you are trying to do (update the database or whatever). Then on the client in the page load do this <%=ThePublicVariable%>. This will reload the tree frame.