Hi guys
I am opening a Login form on the onload event from my first page
Then on my Login page, I have a submit button that resubmits to the same page until there is a successful login or no of tries exceeded.
The problem is that the login page opens in a new window. Is there a way I can resubmit Login.asp to itself to open in the same window properties as originally with ShowModalDialog?
Thanks in advance
A
I am opening a Login form on the onload event from my first page
Code:
function pop()
{
var x
x = showModalDialog("Login.asp","","dialogHeight: 240px; dialogWidth: 400px; edge: Raised; center: Yes; help: No; resizable: Yes; status: No;");
}
Then on my Login page, I have a submit button that resubmits to the same page until there is a successful login or no of tries exceeded.
The problem is that the login page opens in a new window. Is there a way I can resubmit Login.asp to itself to open in the same window properties as originally with ShowModalDialog?
Thanks in advance
A