Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. naserg

    My ASP page runs twice

    I am in trouble. Help me please!!!!!!!
  2. naserg

    My ASP page runs twice

    I noticed that when I keep the ENTER and then click on the submit button it works and the result is: Request Method =POST LOGIN = mylogin But without keeping the ENTER down the result is: Request Method =GET LOGIN = I think there should be something wrong with the cache in IIS. Help please!!!!!!!!
  3. naserg

    POST METHOD

    I noticed that when I keep the ENTER and then click on the submit button it works and the result is: Request Method =POST LOGIN = mylogin But without keeping the ENTER down the result is: Request Method =GET LOGIN = I think there should be something wrong with the cache in IIS. Help please!!!!!!!!
  4. naserg

    My ASP page runs twice

    Levi, Thanks for responding. I have problems with method POST when I use IIS 5.1 + IE 6.x on Windows XP professional. When I use method GET that's OK. For example: Page HTML: <form name=&quot;frm&quot; action=&quot;results.asp&quot; method=&quot;post&quot;> <P>Login: <input...
  5. naserg

    POST METHOD

    Hi SHimo I tried it but have the same problem. When I use GET method your code works but when I change it to POST does not.
  6. naserg

    POST METHOD

    Please Help!!!!!
  7. naserg

    My ASP page runs twice

    Hi I have an HTML page with a form using POST method. My result page is an ASP page. When I check results it seems the post method is not working and the method in use is GET. I checked the log file and it shows that the ASP page is running twice first with POST and next with GET method.What is...
  8. naserg

    POST METHOD

    Any help?
  9. naserg

    POST METHOD

    FengShui1998 Thanks again. This is what I found under configuration for .asp file: Exacutable C:\WINDOWS\System32\inetsrv\asp.dll Extention .asp verbs limit to: GET,HEAD,POST,TRACE
  10. naserg

    POST METHOD

    Hi HellTel When I use the POST method address bar does not show the parameter and bahaves like POST. Something new that I saw in the log file is following : 21:19:24 127.0.0.1 GET /post.htm 206 21:19:27 127.0.0.1 POST /results2.asp 200 21:19:27 127.0.0.1 GET /results2.asp 200 It seems the server...
  11. naserg

    POST METHOD

    FengShui1998 Thank you for response. My html file is: <HTML> <HEAD> <META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft Visual Studio 6.0&quot;> <TITLE>Title</TITLE> </HEAD> <BODY> <form name=&quot;frm&quot; id=&quot;frm&quot; action=&quot;results2.asp&quot; method=&quot;post&quot;>...
  12. naserg

    POST METHOD

    FengShui1998 Thank you for your response.I know that I should use request.querystring(&quot;myvariable&quot;) and request.form(&quot;myvariable&quot;) with GET and POST respectivly. The problem is I can't get the POST method to work and my server does non recognize my form with post method...
  13. naserg

    POST METHOD

    Thanks MrGreed for responding. I tried it but didn't work. The problem is Why server returns the server variable request_method as GET while I am using the POST method. I tried: Dim Method Method = Request.ServerVariables(&quot;request_method&quot;) Response.Write (&quot;Request Method =&quot...
  14. naserg

    POST METHOD

    I have problems with method POST when I use IIS 5.1 + IE 6.x on Windows XP professional. When I use method GET that's OK. For example: Page HTML: <form name=&quot;frm&quot; action=&quot;results.asp&quot; method=&quot;post&quot;> <P>Login: <input type=&quot;text&quot...
  15. naserg

    post method problems

    Hi Gorkem I tried your suggestion but still have the same problem. Any other suggestion? thanks naserg
  16. naserg

    post method problems

    Hey disord3r I am sorry that I didn't explain it before, however you are wright and when I use GET method, I get the results by REQUEST.QUERYSTRING. Anyway, my POST method is not working yet. Any suggestion? All the best naserg
  17. naserg

    post method problems

    Hi onpnt I took out the default value of &quot;&quot; from the input field but by didn't help. By the way, when I try to get the SERVER VARIABLES it always returns REQUEST_METHOD=GET. even when I use POST or HEAD in my form. If you have any other suggestion please let me know. Submitting the...
  18. naserg

    post method problems

    I have problems with method POST when I use IIS 5.1 + IE 6.x. When I use method GET that's OK. For example: Page HTML: <form name=&quot;frm&quot; action=&quot;results.asp&quot; method=&quot;post&quot;> <P>Login: <input type=&quot;text&quot; name=&quot;login&quot; size=&quot;15&quot...

Part and Inventory Search

Back
Top