Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
On my website server right now I can only have one ASP.net 4.0 solution at a time.

I get an error if I put another solution in a secondary file folder.

I can not find a tool on my web server to help me with this task.

Here is the error code from my Web.config file, /Basic/ is the file folder where my second solution resides.

www.mysite.com/Basic/Page.aspx

came up with this error first:

XML
<authentication mode="Forms">
      <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>


Then changed to this but still got the same error:

XML
<authentication mode="Forms">
      <forms loginUrl="~/Basic/Account/Login.aspx" timeout="2880" />
</authentication>
Posted
Updated 3-Mar-13 10:05am
v4
Comments
Sergey Alexandrovich Kryukov 3-Mar-13 18:32pm    
This is not a question at all. We don't know your directory structure.
Besides, the 'Solution' is the artifact of development process. There are no "solutions" in deployed code. I cannot see any reasons why two different solutions cannot be user on the same server and same site. At the same time, I cannot see any particular need in it.
—SA
Avik Ghosh22 6-Mar-13 0:46am    
creat a subdirectory....

1 solution

How are you deploying? I do this by creating projects to folders outside the wwwroot folder...

I then go into IIS right click on the folder tree where I want the solution folder and go add application.

Select the solution folder.

Done :)
Kris
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900