There is an ashx file containing "ProcessRequest(HttpContext context)
" method which gets triggered automatically. When and how does it get fired?
Another question, How can I get the current QueryString when I am inside this file? When I type "context.Request.QueryString
" it says it s null or empty although the address have arguments.
In my webpages I have references to js and images as such: "../../Content/Images/"Filename" In my code if I reference a file as above, it doesnt work so i have to write: "c:/miscfiles/"filename" 1-...