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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating Custom Controls

Status
Not open for further replies.

VJay

Programmer
Mar 26, 2002
19
IN
Creating a component to build a wizard.created web contorls in a vb file and compiled it and dll was also created.while including it in the aspx file in the register directive we got an error.
"File or assembly name xxx, or one of its dependencies, was not found."
 
It is difficult to figure this out from your message but the problem is exactly what the message says - the system can't find a namespace that the control uses. Or a namespace has a dependency that can't be located.

You should be able to test this with a simple test project that references the dll. Alternatively , set up a machine using only the .NET redistributable and try to run the test program there (w/o visual studio).

If your user control uses COM objects, these may not be copied along with your application.
Dean
---
goddette@san.rr.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top