I'm try to achieve in classic asp what has been done here in ASP.NET
Asp.net - Empty QueryString Parameter
So if i have a page question.asp
<form action="result.asp" method="POST">
Name:<input type="Text" name="name" maxlength="30"><BR>
Age:<input type="Text" name="age" maxlength="10"><BR>
Sex:<input type="Text" name="Sex" maxlength="10"><BR>
<input type="Submit" name="submit" value="submit"><BR>
</form>
And nothing is input in e.g. 'Sex' text box I stil need to know that it was sent. e.g. name=karl&age=39&sex=
Thanks