I'm looking for an ASP host that has some kind of URL rewriting module installed in IIS. The site I'm needing to host isn't written in .NET, so we can't use .NET's built-in functions for URL rewriting. Any ideas?
isapi?? whats that? try using this <a href="<%=Request.querystring("queryurl")%>">asdas</a> or something like that I dont think you can change the link at runtime in asp though i love .net makes everything so simple
Could you explain further.... potentially an easier way to go might be to write a dll in .NET, and use interop to access it. (Unless you actually need all the baggage that is within IIS). I'm not sure I understand what you mean by URL rewriting module. If you need to divert somewhere try server.Excute... but I guess that's me not understanding. If neither are possible you might get away with writing a simple ISAPI extension/filter dll to do what you want. Stu