HTML message in Outlook 2000: Form submitted by POST not working

  • Thread starter Thread starter M Mann
  • Start date Start date
M

M Mann

Hello

I have a HTML page which submits by POST method, it works
when run in the web browser but when I attach it in a HTML
email and attempt to submit it no data is retrieved in the
POST.

I would use GET but it seems this does not allow me to
collect as much text as I need.

Help!?!!???

Michael.

Page looks like this:

<HTML>
<BODY>
<form action="http://x.x.x/x.asp"
method="post">
<input type="TEXT" name="test" size="40" value=bang>
<input type="Submit" value ="Send data">
</form>
</BODY>
</HTML>
 
Outlook HTML messages support only GET, not POST. I'm not sure why.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
Back
Top