Show asp form data on an .htm page?

M

Mettá

I need to auto complete parts of a form on an .htm page via an asp results
page. For example a user logs in and then click on the form (asp page) which
then sends the form data to another form on a .htm page

Is this possible or do I have to change the .htm page (and related
navigation) to .asp?

Thanks
M
 
J

Jon Spivey

Mettá said:
I need to auto complete parts of a form on an .htm page via an asp results
page. For example a user logs in and then click on the form (asp page)
which then sends the form data to another form on a .htm page

Is this possible or do I have to change the .htm page (and related
navigation) to .asp?

Thanks
M
 
J

Jon Spivey

Hi,

You can't post a form to an htm page. The only way to do this would be to
send the data in the querystring and then use some javascript to parse it
out. Messy and of course you'll lose users with js turned off. I'd make the
page asp, will save a lot of hassle in the long run
 
M

Mettá

Thanks Jon.

Ug!
M

--
---
Jon Spivey said:
Hi,

You can't post a form to an htm page. The only way to do this would be to
send the data in the querystring and then use some javascript to parse it
out. Messy and of course you'll lose users with js turned off. I'd make
the page asp, will save a lot of hassle in the long run
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top