Community Starter Kit Question

Discussion in 'ASP.NET / ASP.NET Core' started by StevenC, Nov 11, 2004.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. I have the community starter kit in a sub folder. How do I redirect web site traffic to load the main default page of the community? Any help would be appreciated.

    Example: If someone enters my domain name into their browser I want it to load the default page of the CSK
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    Create a ASP or ASP.net file in your root and name it as index.aspx

    Put the following in the file.

    <%

    response.redirect ('/community')

    %>

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. Thank you Bruce


    One more question...can I publish or copy a web project into my root without erasing any of my current sub folders? I would be using Visual Studio NET to copy the project. I don't want to accidentally wipe out my Community sub folder when I do that.


    The reason I ask is one time I was using FrontPage and tried this and it deleted all of the existing content on my web site and then published the new files. I am not sure if Visual Studio NET will try to do the same thing.




    Post Edited (StevenC) : 11/15/2004 7:04:45 AM GMT
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    I do not think it will cause any problem but I can't be sure. FrontPage extension is one of the most unpredictable server product MS has ever produced. You just cannot be 100% sure when you deal with FrontPage.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page