Hello,
this is an asp.net 2.0 question.
I have a project that holds a master page. I want to use the same
masterpage in another web project. It seems like this is not possible.
Anybody know how to work around this?
thx in advance!
Juan T. Llibre - 20 Oct 2005 01:29 GMT
Copy it to the new project.
Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
> Hello,
> this is an asp.net 2.0 question.
[quoted text clipped - 3 lines]
> Anybody know how to work around this?
> thx in advance!
JP - 20 Oct 2005 03:13 GMT
thx for the quick response...it would be nice not to copy to another project
since this would mean maintaining two copies...any other way?
> Copy it to the new project.
>
[quoted text clipped - 9 lines]
> > Anybody know how to work around this?
> > thx in advance!
Juan T. Llibre - 20 Oct 2005 04:18 GMT
Not unless you use osmosis... ;-)
Applications can't talk to each other.
Think of it as *one* instance per application.
Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
> thx for the quick response...it would be nice not to copy to another project
> since this would mean maintaining two copies...any other way?
>> Copy it to the new project.
>>
[quoted text clipped - 9 lines]
>> > Anybody know how to work around this?
>> > thx in advance!
Scott Allen - 20 Oct 2005 13:51 GMT
Some people are using virtual directory tricks to share a master page
across two apps, but I feel this is brittle.
As Juan said, another approach is to copy the file to the new project.
A good source control tool will allow you to "share" the file between
projects such that an update to the file with update in both projects.
--
Scott
http://www.OdeToCode.com/blogs/scott/
>Hello,
>this is an asp.net 2.0 question.
[quoted text clipped - 3 lines]
>Anybody know how to work around this?
>thx in advance!