T
teo
I have two .aspx pages
they use two different Global.asax files
when I "Publish" the first .aspx page,
its Global.asax is transformed in
App_global.asax.compiled
App_global.asax.dll
to put in the Bin folder
and
when I "Publish" the second .aspx page,
its Global.asax is transformed in the SAME files
App_global.asax.compiled
App_global.asax.dll
to put in the Bin folder
So, because they have the same names,
a conflict (=overwriting) occurs.
How to solve this?
In general, how to manage this "multiple Global.asax" situation?
Or am I missing something in building my web projects?
they use two different Global.asax files
when I "Publish" the first .aspx page,
its Global.asax is transformed in
App_global.asax.compiled
App_global.asax.dll
to put in the Bin folder
and
when I "Publish" the second .aspx page,
its Global.asax is transformed in the SAME files
App_global.asax.compiled
App_global.asax.dll
to put in the Bin folder
So, because they have the same names,
a conflict (=overwriting) occurs.
How to solve this?
In general, how to manage this "multiple Global.asax" situation?
Or am I missing something in building my web projects?