Get ASP to work

Discussion in 'FrontPage' started by BarrySumpter, Aug 31, 2004.

  1. Not happening.

    I've been thru this 3 days of research and setting up before.

    Its got something to do with IIS / localhost / iuser account.

    oops might not have mentioned I'm trying to get this working on my local PC. (all is working well on discountASP.net).





    Thanks,
    Barry G. Sumpter
     
  2. I just want to get ASP to work with FrontPage 2003

    Any Ideas?

    <% Dim TestString %>
    <% TestString = "ASP is Working!" %>
    <Response.Write %TestString %>


    Thanks,
    Barry G. Sumpter
     
  3. Bruce

    Bruce DiscountASP.NET Staff

    Try this

    <%
    Dim TestString
    TestString = "ASP is Working!"
    Response.Write TestString
    %>



    quote:Originally posted by BarrySumpter

    I just want to get ASP to work with FrontPage 2003

    Any Ideas?

    <% Dim TestString %>
    <% TestString = "ASP is Working!" %>
    <Response.Write %TestString %>


    Thanks,
    Barry G. Sumpter
    </blockquote id="quote"></font id="quote">

    B.

    DiscountASP.NET
    http://www.DiscountASP.NET
     
  4. http://support.microsoft.com/?id=309051

    Step 2.
    Set the application protection for the Web site to Low and stop and restart the IISAdmin service

    got asp to work
    but still needs major diagnosis which are supplied in the following steps from the same article...

    Thanks,
    Barry G. Sumpter
     
  5. Bruce

    Bruce DiscountASP.NET Staff

    Well... the code is perfectly fine.

    What error did you get?


    quote:Originally posted by BarrySumpter

    Not happening.

    I've been thru this 3 days of research and setting up before.

    Its got something to do with IIS / localhost / iuser account.

    oops might not have mentioned I'm trying to get this working on my local PC. (all is working well on discountASP.net).





    Thanks,
    Barry G. Sumpter
    </blockquote id="quote"></font id="quote">

    B.

    DiscountASP.NET
    http://www.DiscountASP.NET
     
  6. Hi Bruce,

    Thanks for staying with me here.

    Step 2 of the hyperlink above enable ASP to run properly on my machine.

    The following step were just an absolute nightmare so I've just left it at that for now.



    Thanks,
    Barry G. Sumpter
     

Share This Page