Greetings.
I'm very new to asp and I encountered this little problem.
I have 2 files -> home.html & process.asp
In home.html, there are some input textfields.
In process.asp, I have inserted a textfield also.
I tried to post the form in home.html to process.asp. I managed to get the data with this little line:
<% =Request.Form("yyyy1") %>
However, when I tried to insert the value in =Request.Form("yyyy1") into a textfield in process.asp, it says
Error Type:
Microsoft JScript runtime (0x800A1391)
'service' is undefined
/chm/Calculator/process.asp, line 39
For your information, service is the textfield's name.
Please help.