J
John Talli
I have a button on the aspx page. <SAVE>
When I click it the Code Behind is called (see below) and the
JavaScript windows CONFIRM box works.
BUT the browser window never closes. Why?
Can anyone offer suggestions?
Thanks
JavaScript
-------------
function AssignContent() {
confirm('See if this popup happens.'); <<< This popups on the button click
window.close();
}
CodeBehind
When I click it the Code Behind is called (see below) and the
JavaScript windows CONFIRM box works.
BUT the browser window never closes. Why?
Can anyone offer suggestions?
Thanks
JavaScript
-------------
function AssignContent() {
confirm('See if this popup happens.'); <<< This popups on the button click
window.close();
}
CodeBehind