how to use asp.netv1.1 webcontrol in asp.netv.20?

  • Thread starter Thread starter Neo
  • Start date Start date
N

Neo

Hi,

I have asp.net web control which is built on asp.net v1.1. How do I use it
in asp.net 2.0?

TIA

Neo
 
HI,

Should I use assemblybinding to redirect to asp.net2.0 assembly? or I need
to do nothing?

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="XXXXX"
publicKeyToken="XXXXX" />
<bindingRedirect oldVersion="1.1.1433.0"
newVersion=""/>
</dependentAssembly>
</assemblyBinding>
</runtime>

TIA

Neo
 
only one vm per website. assuming the web control is compatable with 2.0
(probably) as it will have to run under the 2.0 vm, just reference the dll,
and use it normally.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top