I am simply trying to submit my form data to another page, but I don't want to leave the page.
I am simply doing a
document.forms["form1"].action = "anotherpage.asp"
document.forms["form1"].submit();
This takes me to anotherpage.asp. I want to do some processing in that page, but the user should not leave the current page.
Any help please
thanks
I am simply doing a
document.forms["form1"].action = "anotherpage.asp"
document.forms["form1"].submit();
This takes me to anotherpage.asp. I want to do some processing in that page, but the user should not leave the current page.
Any help please
thanks