Show asp form data on an .htm page?

  • Thread starter Thread starter Mettá
  • Start date Start date
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
 
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
 
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
 
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
 
Back
Top