Click to See Complete Forum and Search --> : Post to asp via HTML page using a Java Script


clubnegril
12-09-2003, 08:04 PM
I have a secure login manager that uses asp pages. With this program came an asp login page where you must go to the page and then enter your username and password.

What I would like to accomplish is the following:

I have HTML pages with a username and password box to login. I would like to use this (the html pages) while not having to create an asp page.

I would then need to post to an asp script via the html page.

I am told this can be done with Java script.


Can anybody help?

I kindly await someones response. First time post.

ClubNegril

ray326
12-09-2003, 09:00 PM
No javascript required. An HTML page with a form with an action pointe to an ASP page will do what you say you want to do. E.g.

<form name="myform" method="post" action="some.asp">

yada yada

</form>