Well, what i meant to ask is what's the difference between POST and GET in terms of cgi scripts. Can i call the same cgi script, written in PERL or ASP, using POST or GET freely without any difference on the result except the query sstring being logged by GET and not logged by POST.
There are some third party 'IIS analyze' tools on the market. I don't use them so I can't be of much help.
If you don't mind doing analysis on IIS itself, you could always write your own ISAPI filter so you can analyze both GET and POST data coming in to your website regardless of the page name/application name. This will be in C++/ATL Server.
If your site is small you could do something that will do similar. Write is separate and include it in the pages you need. Then the usual code, e.g. ASP:
For each item in Request.QueryString
' ...
Next
For each item in Request.Form
' ...
Next
' If used, then possibly
For each item in Session.Contents
' ...
Next
' And if your curious
For each item in Request.ServerVariables
' ...
Next
Then do your analysis and write it all to a database or file somewhere.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.