I have two pages:
On parent page I have a server button and a HTML input
btnSaveServer: it saves all input on the page
Button1: <input ID="Button1" onclick="AddNewComment('Server');" type="button"
value="Add new comment" />
The javascript function for AddNewComment is simple: open a window for adding new comment:
controlinfo = window.open("AddNewComment.aspx?T=" + par + "&ProjectID=" + document.getElementById("hfProjectID").value, "", "menubar=1,scrollbars=1,resizable=1,left=" + left + ",top=" + top);
controlinfo.focus();
On child page:
I have a server button btnAddNewComment, the last line in its click eve ...
Go to the complete details ...