Site Setup
There is probably a simple solution to this but I have yet to find it.
I have a ASP.NET project set up; we'll call it Proj1. Under Proj1 I have a couple ASPX pages created. I would also like to create a sub folder under Proj1, we'll call it Info. In the Info subdirectory I would like to have other ASPX pages. So the site would look like the following:
Proj1
index.aspx
page1.aspx
page2.aspx
/Info/
MyInfo.aspx
Whenever I put pages in the Proj1/Info/ directory, I recieve a message saying can't load Proj1.MyPage
How can I remedy this? Thanks.
|