Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Nathan Sokalski #1
Using Web.config's <system.web><pages><controls><add /></controls></pages></system.web> To Register UserControls
My Web.config file contains the following section to register some of my
UserControls:
<pages>
<controls>
<add tagPrefix="NATE" tagName="Banner" src="~/Banner.ascx"/>
<add tagPrefix="NATE" tagName="Navigation" src="~/Navigation.ascx"/>
</controls>
</pages>
However, I still receive the following error:
Element 'Banner' is not a known element. This can occur if there is a
compilation error in the Web site.
Element 'Navigation' is not a known element. This can occur if there is a
compilation error in the Web site.
I have tried compiling, and this is the only error I receive. Is there
something I am forgetting to do? Is there something wrong with my Web.config
file? Thanks.
--
Nathan Sokalski
[email]njsokalski@hotmail.com[/email]
[url]http://www.nathansokalski.com/[/url]
Nathan Sokalski Guest
-
.net user controls ascx pages
hi, need to know if contribute can allow our non-technical users to edit the user controls that contain the information they are about to be... -
Editing ASPX pages with controls
Are there currently any workarounds or fixes for the editing of ASP (.aspx) pages that contain customer user controls (.ascx)? Viewing the site... -
using TagPrefix to avoid having @ Register directives on pages using custom controls
Hello, I am designing a custom control in a seperate DLL. I have used the assembly:TagPrefix attribute in this project. The project is included... -
Enumerating Controls Collection in Control.Render() causes System.InvalidOperationException - Why???
Hi all! any ideas why this code... protected override void Render(HtmlTextWriter writer) { Table table; TableRow row; TableCell cell; ... -
The lifecycle of ASP.NET pages and custom controls
Reading this at the moment http://www.pcquest.com/content/coding/103050501.asp "Billy Porter" <billy@xymox.com> wrote in message... -
Brock Allen #2
Re: Using Web.config's <system.web><pages><controls><add /></controls></pages></system.web> To Register UserControls
Put the ASCX files into a subdirectory and then try it.
-Brock
[url]http://staff.develop.com/ballen[/url]
> My Web.config file contains the following section to register some of
> my UserControls:
>
> <pages>
> <controls>
> <add tagPrefix="NATE" tagName="Banner" src="~/Banner.ascx"/>
> <add tagPrefix="NATE" tagName="Navigation"
> src="~/Navigation.ascx"/>
> </controls>
> </pages>
> However, I still receive the following error:
>
> Element 'Banner' is not a known element. This can occur if there is a
> compilation error in the Web site.
> Element 'Navigation' is not a known element. This can occur if there
> is a
> compilation error in the Web site.
> I have tried compiling, and this is the only error I receive. Is there
> something I am forgetting to do? Is there something wrong with my
> Web.config file? Thanks.
>
Brock Allen Guest
-
Nathan Sokalski #3
Re: Using Web.config's <system.web><pages><controls><add /></controls></pages></system.web> To Register UserControls
Didn't help. I think that Visual Studio .NET 2005 is not realizing that I
have the controls registered in my Web.config file. Any other ideas?
--
Nathan Sokalski
[email]njsokalski@hotmail.com[/email]
[url]http://www.nathansokalski.com/[/url]
"Brock Allen" <ballen@NOSPAMdevelop.com> wrote in message
news:b8743b11d4878c8f1e892ba616e@msnews.microsoft. com...> Put the ASCX files into a subdirectory and then try it.
>
> -Brock
> [url]http://staff.develop.com/ballen[/url]
>
>>>> My Web.config file contains the following section to register some of
>> my UserControls:
>>
>> <pages>
>> <controls>
>> <add tagPrefix="NATE" tagName="Banner" src="~/Banner.ascx"/>
>> <add tagPrefix="NATE" tagName="Navigation"
>> src="~/Navigation.ascx"/>
>> </controls>
>> </pages>
>> However, I still receive the following error:
>>
>> Element 'Banner' is not a known element. This can occur if there is a
>> compilation error in the Web site.
>> Element 'Navigation' is not a known element. This can occur if there
>> is a
>> compilation error in the Web site.
>> I have tried compiling, and this is the only error I receive. Is there
>> something I am forgetting to do? Is there something wrong with my
>> Web.config file? Thanks.
>>
>
Nathan Sokalski Guest
-
Juan T. Llibre #4
Re: Using Web.config's <system.web><pages><controls><add /></controls></pages></system.web> To Register UserControls
Nathan,
I don't see "src" documented anywhere.
I do see "source" documented, however.
Could you check to see if this works :
<add
tagprefix="NATE"
tagname="Banner"
source="Banner.ascx"/>
<add
tagprefix="NATE"
tagname="Navigation"
source="Navigation.ascx"/>
?
....and let us know if it works.
Juan T. Llibre, asp.net MVP
asp.net faq : [url]http://asp.net.do/faq/[/url]
foros de asp.net, en español : [url]http://asp.net.do/foros/[/url]
===================================
"Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
news:%23X7fgr9IHHA.1248@TK2MSFTNGP02.phx.gbl...> My Web.config file contains the following section to register some of my UserControls:
>
> <pages>
> <controls>
> <add tagPrefix="NATE" tagName="Banner" src="~/Banner.ascx"/>
> <add tagPrefix="NATE" tagName="Navigation" src="~/Navigation.ascx"/>
> </controls>
> </pages>
>
> However, I still receive the following error:
>
> Element 'Banner' is not a known element. This can occur if there is a compilation error in the Web
> site.
> Element 'Navigation' is not a known element. This can occur if there is a compilation error in the
> Web site.
>
> I have tried compiling, and this is the only error I receive. Is there something I am forgetting
> to do? Is there something wrong with my Web.config file? Thanks.
> --
> Nathan Sokalski
> [email]njsokalski@hotmail.com[/email]
> [url]http://www.nathansokalski.com/[/url]
>
Juan T. Llibre Guest
-
Nathan Sokalski #5
Re: Using Web.config's <system.web><pages><controls><add /></controls></pages></system.web> To Register UserControls
I am not sure what documentation you are looking at, but if you go to:
ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.NETDEVFX.v20.en/dv_ASPNETgenref/html/852861eb-dba7-41eb-9c34-fa09b99abac0.htm
It contains the following documentation under the Attributes section:
src
Optional String attribute.
Specifies the name of the file that contains the user control and
requires that the tagName attribute is also set.
Also, when I tried changing it from src to source the error specified that
'source' was an unrecognized attribute. Any other ideas?
--
Nathan Sokalski
[email]njsokalski@hotmail.com[/email]
[url]http://www.nathansokalski.com/[/url]
"Juan T. Llibre" <nomailreplies@nowhere.com> wrote in message
news:ewAxGhHJHHA.4992@TK2MSFTNGP04.phx.gbl...> Nathan,
>
> I don't see "src" documented anywhere.
> I do see "source" documented, however.
>
> Could you check to see if this works :
>
> <add
> tagprefix="NATE"
> tagname="Banner"
> source="Banner.ascx"/>
>
> <add
> tagprefix="NATE"
> tagname="Navigation"
> source="Navigation.ascx"/>
>
> ?
>
> ...and let us know if it works.
>
>
>
>
> Juan T. Llibre, asp.net MVP
> asp.net faq : [url]http://asp.net.do/faq/[/url]
> foros de asp.net, en español : [url]http://asp.net.do/foros/[/url]
> ===================================
> "Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
> news:%23X7fgr9IHHA.1248@TK2MSFTNGP02.phx.gbl...>>> My Web.config file contains the following section to register some of my
>> UserControls:
>>
>> <pages>
>> <controls>
>> <add tagPrefix="NATE" tagName="Banner" src="~/Banner.ascx"/>
>> <add tagPrefix="NATE" tagName="Navigation" src="~/Navigation.ascx"/>
>> </controls>
>> </pages>
>>
>> However, I still receive the following error:
>>
>> Element 'Banner' is not a known element. This can occur if there is a
>> compilation error in the Web site.
>> Element 'Navigation' is not a known element. This can occur if there is a
>> compilation error in the Web site.
>>
>> I have tried compiling, and this is the only error I receive. Is there
>> something I am forgetting to do? Is there something wrong with my
>> Web.config file? Thanks.
>> --
>> Nathan Sokalski
>> [email]njsokalski@hotmail.com[/email]
>> [url]http://www.nathansokalski.com/[/url]
>>
>
Nathan Sokalski Guest
-
Gaurav Vaish \(www.Edujini-Labs.com\) #6
Re: Using Web.config's <system.web><pages><controls><add /></controls></pages></system.web> To Register UserControls
If the ascx and aspx are in the same directory, you will get an error
stating that the control could not be loaded:
"because it is registered in web.config and lives in the same directory as
the page"
Make a directory, say, UControls and then do the following:
<add tagPrefix='nate' tagName='Banner' src='~/UControls/Banner.ascx' />
btw, there's no 'source' attribute. There's only 'src' attribute in
<controls><add> element.
HTH
--
Happy Hacking,
Gaurav Vaish | [url]www.mastergaurav.com[/url]
[url]www.edujini-labs.com[/url]
[url]http://eduzine.edujinionline.com[/url]
-----------------------------------------
"Juan T. Llibre" <nomailreplies@nowhere.com> wrote in message
news:ewAxGhHJHHA.4992@TK2MSFTNGP04.phx.gbl...> Nathan,
>
> I don't see "src" documented anywhere.
> I do see "source" documented, however.
>
> Could you check to see if this works :
>
> <add
> tagprefix="NATE"
> tagname="Banner"
> source="Banner.ascx"/>
>
> <add
> tagprefix="NATE"
> tagname="Navigation"
> source="Navigation.ascx"/>
>
> ?
>
> ...and let us know if it works.
>
>
>
>
> Juan T. Llibre, asp.net MVP
> asp.net faq : [url]http://asp.net.do/faq/[/url]
> foros de asp.net, en español : [url]http://asp.net.do/foros/[/url]
> ===================================
> "Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
> news:%23X7fgr9IHHA.1248@TK2MSFTNGP02.phx.gbl...>>> My Web.config file contains the following section to register some of my
>> UserControls:
>>
>> <pages>
>> <controls>
>> <add tagPrefix="NATE" tagName="Banner" src="~/Banner.ascx"/>
>> <add tagPrefix="NATE" tagName="Navigation" src="~/Navigation.ascx"/>
>> </controls>
>> </pages>
>>
>> However, I still receive the following error:
>>
>> Element 'Banner' is not a known element. This can occur if there is a
>> compilation error in the Web site.
>> Element 'Navigation' is not a known element. This can occur if there is a
>> compilation error in the Web site.
>>
>> I have tried compiling, and this is the only error I receive. Is there
>> something I am forgetting to do? Is there something wrong with my
>> Web.config file? Thanks.
>> --
>> Nathan Sokalski
>> [email]njsokalski@hotmail.com[/email]
>> [url]http://www.nathansokalski.com/[/url]
>>
>
Gaurav Vaish \(www.Edujini-Labs.com\) Guest



Reply With Quote

