Design Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have slightly different requirement, i have a product to be developed in
asp.net.

i want to create all the modules of the product in separate pluggable pieces
of DLLs.
to that intially i separate the modules as folders... now...

So i want my deloyment structure like this..
my installer will install like .this..

c:\Program Files\Mycomp\MyProduct\ .. and then

Web
Bin (all dlls here)
Main
( i want all the web.config, global.asax..etc here since i want to call this
as a main module,(asp.net app root))
Module1
Module2
Module3
Resources (this folders contains all resources required)
Images
Service
Service1 (this contains.. webservice)
Util
util1 (this folder contains winform apps.)



So. the question is when i ship all the aspx. files in subfolders like
(main,module1), and bin (dlls ) also having in the sibiling it is not
acceptable, since IISasp.net looks bin folder under the main it is not
working

am i clear.. is this approach correct..

regards
Sahridhayan
 
You ASP.NET application looks in the bin folder for it's items.
Webconfig and global.asa are in the root folder.

That's the rules.

You're design site layout does not look like it is compatible. Why would you
want to change this anyway? Are you thinking of modifying this project 2
years from now, with coders that are not you? Why would you want to make in
confussing for other developers?

If you have a reason for your layout, please describe the functional
reasons, and I'm sure we can come up with something functional.

Steve
 
Back
Top