hi! I haven't been here in a while but I like the changes! I've asked this question @ asp.net forums, but they were completely unhelpful. Maybe it's just me but they could not give me a straight answer. So maybe I'll have better luck here; I find the people in this community very friendly and I don't know why I didn't come here in the first place! here goes:
why does visual studio .net insist on creating new asp.net web applications in a subdirectory of the root? this poses a huge problem because I want to be able to have links and images relative to the site root but the site root is located at c:\inetpub\wwwroot. VS.net makes the root of my asp.net web site c:\inetpub\wwwroot\Project1\ which is fine except if I make a link something like this
<a href="/subdirectory/index.aspx">link</a>
it changes my link to http://localhost/subdirectory/index.aspx instead of http://localhost/project1/subdirectory/index.aspx.
so here is my simple question, how do I get around this straight and narrow path to insanity? Thank you!
-SelArom