vote up 1 vote down star

In a regular .aspx page, you can access public properties from the codebehind. Is there any way to do a similar thing in a user control. For example, in the following code 'List' is public property of the codebehind of the user control and yet it is not accessible.

<% foreach (TripTeam team in List) { %>
<div>
    <label><%= team.Name %></label>
</div>                    
<%} %>
flag

It's been a long day so I think you'll need to show us a bit more code. – serialhobbyist Oct 27 at 17:36
Your example is vulnerable to injection attacks. Make sure you encode your label contents eg: <%= Server.Encode(team.Name) %> – I Am The Enterprise Oct 28 at 3:38

2 Answers

vote up 1 vote down check

You can access the public properties of a UserControl from your .aspx page. Here's an example

<script runat="server">
public string Caption { get { return _caption.Text; } set { _caption.Text = value; } }
public string Text{ get { return _tb1.Text; } set { _tb1.Text = value; } }

<div>
<asp:Label ID="_caption" runat= "server" class="caption" /><br />
<asp:TextBox ID="_tb1" runat="server" CssClass="textBox" Width="25px" />

Then on your aspx page, you can set the Text and Caption properties within your user control:

<uc1:CaptionText ID="ct1" runat="server" Caption="User name" />
link|flag
vote up 0 vote down

You need to say 'userControlId.List' to access the property when accessing a property in the control from a page which uses the control.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.