G
Guest
Hi!
I want my web application to be able to handle files with the extension
..mspx (my own extension). The new extension should be handled exatly the way
aspx files are handled, but with some additional code specific to the .mspx
extension files.
I thought this would be an easy task, but maby I've cornored myself into a
wrong path. I've set the mapping correct in IIS, so that asp.net manages the
new extension. I've also created a class that inherits from the IHttpHandler
interface. This custom HttpHandler is also registered in web.config.
So far so good, but I've not figured out how to implement the content of the
custom HttpHandler, so that it first goes throuht my custom code, and then
let the Page class handle the rest.
Any ideas?
Thanx!
Paul
I want my web application to be able to handle files with the extension
..mspx (my own extension). The new extension should be handled exatly the way
aspx files are handled, but with some additional code specific to the .mspx
extension files.
I thought this would be an easy task, but maby I've cornored myself into a
wrong path. I've set the mapping correct in IIS, so that asp.net manages the
new extension. I've also created a class that inherits from the IHttpHandler
interface. This custom HttpHandler is also registered in web.config.
So far so good, but I've not figured out how to implement the content of the
custom HttpHandler, so that it first goes throuht my custom code, and then
let the Page class handle the rest.
Any ideas?
Thanx!
Paul