Click here to Skip to main content
15,891,184 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWeb Services Pin
varshavmane22-Dec-06 0:00
varshavmane22-Dec-06 0:00 
AnswerRe: Web Services Pin
Frank Kerrigan22-Dec-06 0:22
Frank Kerrigan22-Dec-06 0:22 
GeneralRe: Web Services Pin
varshavmane22-Dec-06 0:37
varshavmane22-Dec-06 0:37 
GeneralRe: Web Services Pin
prolibertine22-Dec-06 3:57
prolibertine22-Dec-06 3:57 
AnswerRe: Web Services Pin
ednrgc22-Dec-06 3:56
ednrgc22-Dec-06 3:56 
AnswerRe: Web Services Pin
postmaster@programmingknowledge.com22-Dec-06 5:23
postmaster@programmingknowledge.com22-Dec-06 5:23 
QuestionHow to give reference to an assembly? Pin
irkahc21-Dec-06 23:56
irkahc21-Dec-06 23:56 
AnswerRe: How to give reference to an assembly? Pin
Nimit Patel22-Dec-06 2:05
Nimit Patel22-Dec-06 2:05 
Hello,

The following example shows how to redirect one assembly version to another and provide a codebase.

<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="myAssembly"
publicKeyToken="32ab4ba45e0a69a1"
culture="neutral" />
<bindingRedirect oldVersion="1.0.0.0"
newVersion="2.0.0.0"/>
<codeBase version="2.0.0.0"
href="http://www.litwareinc.com/myAssembly.dll"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

The following example shows how to use the appliesTo attribute to redirect binding of a .NET Framework assembly.

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v1.0.3705">
<dependentAssembly>
<assemblyIdentity name="mscorcfg" publicKeyToken="b03f5f7f11d50a3a" culture=""/>
<bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>

For more detail visit,

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfAssemblyBinding.asp


Nimit Patel
Questionproblem in javascript Pin
kinnuP21-Dec-06 23:15
kinnuP21-Dec-06 23:15 
AnswerRe: problem in javascript Pin
Guffa22-Dec-06 0:33
Guffa22-Dec-06 0:33 
AnswerRe: problem in javascript Pin
ednrgc22-Dec-06 3:58
ednrgc22-Dec-06 3:58 
Questionright-click functionality in asp.net Pin
vipin desai21-Dec-06 22:59
vipin desai21-Dec-06 22:59 
AnswerRe: right-click functionality in asp.net Pin
blakshmi6-Nov-08 19:53
blakshmi6-Nov-08 19:53 
Questiondynamically Enabling or disabling some item in menu Pin
mohd imran abdul aziz21-Dec-06 22:20
mohd imran abdul aziz21-Dec-06 22:20 
AnswerRe: dynamically Enabling or disabling some item in menu Pin
abulhassan_shock22-Dec-06 0:27
abulhassan_shock22-Dec-06 0:27 
AnswerRe: dynamically Enabling or disabling some item in menu Pin
Manickarj22-Dec-06 1:44
Manickarj22-Dec-06 1:44 
GeneralRe: dynamically Enabling or disabling some item in menu Pin
mohd imran abdul aziz22-Dec-06 22:37
mohd imran abdul aziz22-Dec-06 22:37 
AnswerRe: dynamically Enabling or disabling some item in menu Pin
ednrgc22-Dec-06 3:59
ednrgc22-Dec-06 3:59 
Questiondoing bubble event Pin
jayakumarb21-Dec-06 22:03
jayakumarb21-Dec-06 22:03 
Questionhow to get the focus on window or browser Pin
jayakumarb21-Dec-06 21:53
jayakumarb21-Dec-06 21:53 
AnswerRe: how to get the focus on window or browser Pin
Haissam22-Dec-06 5:04
Haissam22-Dec-06 5:04 
AnswerRe: how to get the focus on window or browser Pin
postmaster@programmingknowledge.com22-Dec-06 5:26
postmaster@programmingknowledge.com22-Dec-06 5:26 
QuestionAsp.net Pin
venkatesan4521-Dec-06 20:38
venkatesan4521-Dec-06 20:38 
AnswerRe: Asp.net Pin
Deepak the Cool21-Dec-06 22:09
Deepak the Cool21-Dec-06 22:09 
AnswerRe: Asp.net Pin
rama charan22-Dec-06 0:32
rama charan22-Dec-06 0:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.