Hi,
I have a JavaScript function:
function returnNextPage(nextPage) {
//alert(nextPage);
//document.SearchUser.action = nextPage;
document.SearchUser.action = "/AdminTools/unlockUserResearchAccount";
document.SearchUser.submit();
}
//-->
When I call this function on the submit of a button it displays the correct URL in the browser but the page is white and it has the heading "HTTP 405 Resource not found".
When I press F5 or click on refresh the page is displayed properly.
Does anyone have any idea why this is happening?
Any ideas or suggestions appreciated.
I have a JavaScript function:
function returnNextPage(nextPage) {
//alert(nextPage);
//document.SearchUser.action = nextPage;
document.SearchUser.action = "/AdminTools/unlockUserResearchAccount";
document.SearchUser.submit();
}
//-->
When I call this function on the submit of a button it displays the correct URL in the browser but the page is white and it has the heading "HTTP 405 Resource not found".
When I press F5 or click on refresh the page is displayed properly.
Does anyone have any idea why this is happening?
Any ideas or suggestions appreciated.