Development ASP host with URL rewriting ISAPI?

Discussion in 'Software' started by NiHiLiST, 14 Dec 2004.

  1. NiHiLiST

    NiHiLiST New-born car whore

    Joined:
    18 Aug 2001
    Posts:
    3,987
    Likes Received:
    6
    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?
     
  2. John Cena

    John Cena What's a Dremel?

    Joined:
    1 Jun 2004
    Posts:
    818
    Likes Received:
    0
    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
     
  3. Hepath

    Hepath Minimodder

    Joined:
    20 Oct 2003
    Posts:
    730
    Likes Received:
    0
    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
     

Share This Page