re:
> if there is a way to let two websites share the same app_code
No, there isn't.
An application cannot use a different application's special directories.
It *must* always refer to it's own special directories.
re:
> how do I set it up so that I only have one app_code folder?
Do you have an absolute need to have them setup as separate applications ?
Often, what we think are two separate applications, particularly if they use the same data,
are really two facets of a larger application and can work fine as sub-applications,
i.e. residing in different subdirectories of the same application...and sharing the
same app_code folder because they are not separate applications.
It might be worthwhile for you to consider that type of solution.
Juan T. Llibre, asp.net MVP
aspnetfaq.com :
http://www.aspnetfaq.com/
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en espaņol :
http://asp.net.do/foros/
===================================
"Howard" <> wrote in message news:...
>I have two websites that basically use the same data access layer. the code in the app_code folder
>are identical for these two website. Each has a different presentation layer (html stuff). It's a
>lot of work keeping the two up to date when making changes in the data access layer.
> Im wondering if there is a way to let two websites share the same app_code or something to that
> effect.
> Has anyone done this
> Is this even possible? If so how do I set it up so that I only have one app_code folder?
>
> Thanks,
> Howard
>