CDONTS and html forms

M

Mettá

I am trying to include a form in a CDONTS email..


HTML = HTML & "<p>Login</p>"
HTML = HTML & "<form method=""POST"" action=""http://www.site/page.asp"">"
HTML = HTML & "<p><input type=""submit"" value=""Submit"" name=""B1"">"
HTML = HTML & "<input type=""hidden"" name=""id"" value=" &
request.form("id") & "">"
HTML = HTML & "<input type=""hidden"" name=""name"" value=" &
request.form("name") & "">"
HTML = HTML & "<input type=""hidden"" name=""fixedv1"" value=""xxx"">"
HTML = HTML & "<input type=""hidden"" name=""fixedv2"" value=""N"">"
HTML = HTML & "<input type=""hidden"" name=""fixedv3"" value=""yyy"">"
HTML = HTML & "</form>"

I have got my "'s in the wrong plave but I can see where I've gone wrong????
 

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