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 the use of the tag in the web.config file?
What is query string in asp.net?
What is the use of ASP.NET routing?
What is the difference between user control an custom control?
Can asp.net work on an nt server?
What is x xss protection?
How to implement form based authentication in asp.net application?
Explain significance of routing? : asp.net mvc
How can you handle errors in Web API?
How you will handle session when deploying application in more than a server?
What is a session in programming?
What is http protocol and how it works?
Can you nest updatepanel within each other?
What is cookies in asp net?
What is a uri query?