Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help!! How to add a reference to a page

Status
Not open for further replies.

NegreteO

Programmer
Apr 23, 2003
54
US
Hi,

I created a C# component but and I want to call it from a web page, I can't reference to the dll because I am using WebMatrix and not Visual Studio so I only can reference to this dll by using code but I don't know how to do that.

Does anyone know how to reference it by code and how to instantiate it using C#

Thanks in advance
 
Copy your dll into your website's bin folder and refer to it the same way you do your .NET assemblies
<%@ import Namespace="System.Data" %>
<%@ import Namespace="YourAssebmly" %>
Marty
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top