PDA

View Full Version : Organizing My Web Apps


TekknoDraykko
02-18-2008, 10:19 AM
I would like to organize my web apps so that each is in a separate folder (directory). When I publish (or copy) my web apps to dASP.NET, the web.config file for each will get overwritten, because it's just sitting at the root. Any ideas?

Draykko </font></font>

raymondp
02-19-2008, 01:10 AM
Actually each subdirectory can be set as there own application folder. Create the subdirectories via ftp, then log into your DASP control panel and under Web Application Tool set the subdirectories as an application folder. This way, the settings for the web.config files of that application will take priority over the web.config on the root. But you still will need to understand that web.config properties are inheritable. Which means the default properties set on the root can inherit down to the subdirectory unless there are set other wise by the applications config file.

rcp
DiscountASP.NET
www.DiscountASP.NET (http://www.DiscountASP.NET)

TekknoDraykko
02-19-2008, 02:58 AM
Thanks!


I'll try that out.