M
Michael
Hi,
I am writting a ASP which will accept lots of data from user interface page.
Is there a way that show me the each field or key name and value?
For example;
From the user interface page, the code is like this
<Form name="my_form" action="my_action.asp" .....>
... ...
<input type="Text" name="Text1" value="123">
<input type="Text" name="Text2" value="aaa">
<input type="Text" name="Text3" value="bbbb">
... ....
</Form>
There are maybe many many data fields to be shown on the page
Then I want "my_action.asp" can show my the data like this way:
Text1='123'
Text2='aaa'
Text3='bbbbb'
I tried to use Response.Write request.forms() .., but it only shows me the
value, how to show the key name?
Kindly please tell me how to code it.
Thanks
Michael
I am writting a ASP which will accept lots of data from user interface page.
Is there a way that show me the each field or key name and value?
For example;
From the user interface page, the code is like this
<Form name="my_form" action="my_action.asp" .....>
... ...
<input type="Text" name="Text1" value="123">
<input type="Text" name="Text2" value="aaa">
<input type="Text" name="Text3" value="bbbb">
... ....
</Form>
There are maybe many many data fields to be shown on the page
Then I want "my_action.asp" can show my the data like this way:
Text1='123'
Text2='aaa'
Text3='bbbbb'
I tried to use Response.Write request.forms() .., but it only shows me the
value, how to show the key name?
Kindly please tell me how to code it.
Thanks
Michael