Is it possible to use two versions of assembly at the same
time?If possible explain with code?
Answer Posted / uma
OfCource sachine ,what u had written is correct,
if u adding System.Web.ui namespace, Namespace contain more
than one dll also,that Each dll has its own version and
they are now runnig in same time.
<add assembly........> is one dll with version xyz....
in the below config file there are 8 dll which has its own
versions runnig at the same time
<compilation debug="true">
<assemblies>
<add assembly="System.Core, Version=3.5.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions,
Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Data.DataSetExtensions,
Version=3.5.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Xml.Linq, Version=3.5.0.0,
Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Web.Extensions.Design,
Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35" />
<add assembly="System.Design, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Windows.Forms,
Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089" />
</assemblies>
</compilation>
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is content page in asp net?
Explain difference between dataset and datareader?
Apart from IDE what are the enhancements in asp.net 2.0?
Where session id is stored?
Where is asp.net view state stored?
how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly
About CLR, reflection and assemblies?
What is global.asax file used for?
Can you explain how ASP.NET application life cycle and page life cycle events fire?
What is the default authentication mode for asp.net?
What is Web Server Control Templates.?
Is asp.net easy to learn?
What are the different types of Caching techniques in ASP.NET?
What is the biggest disadvantage of “Other Return Types” in Web API?
Explain about asp.net state management?