I have a search everywhere for help and its beginning to annoy me.
I am creating an internal toolkit website that stores the Tools and their related information.
My vision is to have a web address (Http: //website.local/Tool/ID) Where ID is the identifier of the tool we want to display. My reasoning is that I can extend the functionality of the URL to use various other functions.
I am currently using a custom httpHandler that intercepts any URL that is in the Tool folder.
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Tooling_Website.Tool { public class ToolHandler : IHttpHandler { public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) {
Basically, I have a page inside the Tool folder (Tool \ tool.aspx) that I want my httpHandler client to display the response.
But this method does not work (it does not fail, it just shows nothing). I can write the raw file in response, but obviously this is not my goal.
Thanks,
Oliver
source share