Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > templated user controls

Reply
Thread Tools

templated user controls

 
 
Adrijan Josic
Guest
Posts: n/a
 
      01-13-2004
Ok I have made a templated user control using the sample
in help that is used like this:

<General:WebPage id="WebPage1"
runat="server">
<Header>
header
</Header>
<Left>
<asp:Button
ID="test" Runat="server" OnClick="testClick"
Text="test "></asp:Button>
</Left>
<Content>
content
</Content>
</General:WebPage>

Ok, notice the server button inside on of the templates.
Is there any way I could declare that button as a property
of the page this code is on? I could probably access the
button using a couple of FindControl calls and typecasts
but that's a little tedious.

Thanks
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calling templated member of templated object david@sunlightd.com C++ 1 06-22-2007 05:13 PM
templated function as parameter of another templated function Amadeus W. M. C++ 2 07-04-2006 09:59 PM
ASP.NET Templated User Controls - Limit child controls allowable within a templated control JohnyStyles@gmail.com ASP .Net 0 05-29-2006 06:00 PM
Subtypes of templated types (in templated functions) Marijn C++ 5 02-13-2004 09:50 AM
implementing a templated struct within a templated struct RA Scheltema C++ 3 01-06-2004 11:25 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57