> I have a simple HTML form on my website.I`m posting this form via CDOSDYS to
> an email address.The problem is that none of the user input is sent i.e the
[quoted text clipped - 111 lines]
> response.redirect("http://www.lordsec.co.za/thankyou.htm")
> %>
This is a classic ASP question and ought to have been posted to
microsoft.public.inetserver.asp.general.
However in answer to your question. Change the <form> element to use
method="post" instead of "get". The "get" places all the values on the
query string and are therefore only accessible via Request.Querystring.
Very few circumstances ought to use a "get" so you should use "post".

Signature
Anthony Jones - MVP ASP/ASP.NET