This works:
<span value="<%= this.Text %>" />
This doesn't work:
<asp:Label Text="<%= this.Text %>" runat="server" />
Why is that?
How can I make the second case work properly, i.e., set the label's text to the value of the "Text" variable?
|
|
|
Not sure how to mark this as such, but this is a bit of a duplicate. See this thread. Just to add insult to injury, I don't think embedding code in to your markup will really make your markup any clearer or more elegant. :) |
|||
|
|
Code behind,
|
|||
|
|
|
UPD: Seems like my variant doesnt work, this is better:
|
||||
|
|
|
You will need to set the value of the server control in code First of all, assign an ID to the label control so you can access the control
Then, in your Page_Load function, set the value of your labels 'Text' field
This function will be in your code behind file, or, if you are not using the code behind model, inside your aspx page you will need
Good luck. |
|||
|
|
|
In my code i am using something like this easily but in the databound control like ListView Item template
But when i tried to use outside the databound control using <%# .. %>, it simply doesn't work. You can easily do with
But for server controls, and outside of databound control. We need to call DataBind() in pageload event explicitly
|
||||
|
|