This topic is locked

sub-project

4/25/2007 6:38:34 PM
ASPRunner.NET General questions
B
bluezz author

could I develop a project(web portal) have sub-project(set in sub-directory),

abc(ie. company name)

--> sales

--> product

--> purchase

if I independ develop sub project and post to web site(sub-directory),

they have some trouble to get common data or program(ie. master page, lib.vb),

someone maybe not find, or duplicate!

Thanks!

Eugene 4/27/2007

When you copy projects to web-server, you can locate common files (database file, master page) in separate directory. You should edit paths to them in generated files.

f.e., if you copy database file to directory abc\App_Data - you should edit connectionString in web.config files.

For master page - you should edit path in Page directory - f.e., MasterPageFile="/Default.master".

You can allocate common files with code in abc/App_Code directory