|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
POST method not working
I just started working on ASP. I tried a simple code for post method but the form does not return anything.
Request.querystring and GET method works but request.form does not work. I am using windows xp professional with sp2. Quick heal total security 2007 is installed. Request.form.count returns 0. I have tried possible solutions through this forum. This is my code for demo_requery.asp <html> <body> <form action="demo_requery.asp" method="post"> Your name: <input type="text" name="fname" size="20" /> <input type="submit" value="Submit" /> </form> <% dim fname fname=Request("fname") response.write(request.form.count) If fname<>"" Then Response.Write("Hello " & fname & "!<br />") Response.Write("How are you today?") End If %> </body> </html> |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > POST method not working |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|