User Control

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I created a web user control, named Navigation, in my web site and
added it to a page using LoadControl:

Protected WithEvents ucNavigation As Navigation =
LoadControl("Navigation.ascx")

I defined it "As Navigation" because I need to access the properties
inside this control.

However Navigation is not recognized.

How can I solve this?

Thanks,

Miguel
 
Open your website project and select from Visual Studio's main menu
Project-->Add Reference. The Add Reference dialog will open. Select
the Projects tab and click [Browse]. Locate the project for your
navigation control and select it Click OK. At this point, Visual
Studio should recognize the phrase "As Navigation".
 
Open your website project and select from Visual Studio's main menu
Project-->Add Reference. The Add Reference dialog will open. Select
the Projects tab and click [Browse]. Locate the project for your
navigation control and select it Click OK. At this point, Visual
Studio should recognize the phrase "As Navigation".

This is not a project it is a web site. I am creating a user control
inside the web site.
 

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