Page Submit
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
I have got a popup form im using to get information that i will load on the main form. On the popup form im using the following code to update the main form by forcing a postback. string script1 = "window.opener.document.forms(0).submit();"; ScriptManager.RegisterStartupScript(Page, Page.GetType(), "submit", script1, true); my problem is forcing the submit on the main form corrupts some controls(third part tools). I would like to refresh only the textbox being updated on the main page. Does anyone know the best way to do this.