473,386 Members | 1,793 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Why can I not use script blocks within ASP:Label controls?

Below is some code that I do not know why it does not work. Okay, as you
can see it is simple HTML with two ASP:Label controls. Each label has some
code that basically gets a string that will be written to the browser.
ConditionalText.Eval is a method from my own library. As you can see, I
have written some static text before and after the first Eval call. If I
open this page, I get no content in the Label, even the static content. I
just get "<span id="lblScenario"
style="font-size:17px;font-weight:bold;"></span>". Now, suppose that I
remove first Eval call and open the page again, I get "<span
id="lblScenario"
style="font-size:17px;font-weight:bold;">sdfsadffdsfsda</span>", which this
time contains the static content as expected. I have even removed my
reference to Eval and just placed static content in the <% %> block and the
same thing happens. Any ideas at what the server is doing?
<form id="Form1" method="post" runat="server">
aaaaaaaa
<table>
<TR>
<TD vAlign="top">
<asp:Label id="lblScenario" Font-Size="17px" Font-Bold="True"
Runat="server">sdfsadf<%= ConditionalText.Eval("ADMIN_MARKET_HEADER")
%>fdsfsda</asp:Label>
<br>
<br>
<asp:Label id="lblScenarioExpl" Font-Bold="False" Runat="server">
<%= ConditionalText.Eval("ADMIN_MARKET_INSTRUCTION") %>
</asp:Label>
</TD>
</TR>
</table>
bbbbbbbb
</form>
Nov 19 '05 #1
2 1731
It doesn't work because ASP.NET is taking the <asp:Label x=y z=w> and creating
a method to do the instantiation and assignment of those properties on the
Label (BTW, the text inside the tags is just a Text property assignment).
This is done at creation time of the ASPX Page object. The <%%> syntax is
Rendering syntax which is done at a much later time in the page lifecycle
andn thus conflicts with the initialization code mentioned above. The idea
is that if you've gone to all the work to make this a server control, then
you'd do those sorts of assignments (dynamic or otherwide) in your code for
your page, like Page_Load. In short, the ASP.NET parser and object model
is at odds with their attempt to provide backwards classic ASP style inline
rendering syntax.

-Brock
DevelopMentor
http://staff.develop.com/ballen
Below is some code that I do not know why it does not work. Okay, as
you can see it is simple HTML with two ASP:Label controls. Each label
has some code that basically gets a string that will be written to the
browser. ConditionalText.Eval is a method from my own library. As you
can see, I have written some static text before and after the first
Eval call. If I open this page, I get no content in the Label, even
the static content. I just get "<span id="lblScenario"
style="font-size:17px;font-weight:bold;"></span>". Now, suppose that
I remove first Eval call and open the page again, I get "<span
id="lblScenario"
style="font-size:17px;font-weight:bold;">sdfsadffdsfsda</span>", which
this time contains the static content as expected. I have even
removed my reference to Eval and just placed static content in the <%
%> block and the same thing happens. Any ideas at what the server is
doing?

<form id="Form1" method="post" runat="server">
aaaaaaaa
<table>
<TR>
<TD vAlign="top">
<asp:Label id="lblScenario" Font-Size="17px" Font-Bold="True"
Runat="server">sdfsadf<%= ConditionalText.Eval("ADMIN_MARKET_HEADER")
%>fdsfsda</asp:Label>
<br>
<br>
<asp:Label id="lblScenarioExpl" Font-Bold="False"
Runat="server">
<%= ConditionalText.Eval("ADMIN_MARKET_INSTRUCTION") %>
</asp:Label>
</TD>
</TR>
</table>
bbbbbbbb
</form>


Nov 19 '05 #2
I'm not sure to undersand what do you want to do,
but in ASP.NET sou shouldn't use <%= %> to render some dynamic content like
ASP developers used to do before ASP.NET

It is better to write the code like :
lblScenario.Text = "mystring"+ConditionalText.Eval("ADMIN_MARKET_HEAD ER")

and searching why or why not your result is strange is not the good question
I mean...

Sincerely,
Daniel
"Peter Rilling" <pe***@nospam.rilling.net> wrote in message
news:uT**************@TK2MSFTNGP12.phx.gbl...
Below is some code that I do not know why it does not work. Okay, as you
can see it is simple HTML with two ASP:Label controls. Each label has some code that basically gets a string that will be written to the browser.
ConditionalText.Eval is a method from my own library. As you can see, I
have written some static text before and after the first Eval call. If I
open this page, I get no content in the Label, even the static content. I
just get "<span id="lblScenario"
style="font-size:17px;font-weight:bold;"></span>". Now, suppose that I
remove first Eval call and open the page again, I get "<span
id="lblScenario"
style="font-size:17px;font-weight:bold;">sdfsadffdsfsda</span>", which this time contains the static content as expected. I have even removed my
reference to Eval and just placed static content in the <% %> block and the same thing happens. Any ideas at what the server is doing?
<form id="Form1" method="post" runat="server">
aaaaaaaa
<table>
<TR>
<TD vAlign="top">
<asp:Label id="lblScenario" Font-Size="17px" Font-Bold="True"
Runat="server">sdfsadf<%= ConditionalText.Eval("ADMIN_MARKET_HEADER")
%>fdsfsda</asp:Label>
<br>
<br>
<asp:Label id="lblScenarioExpl" Font-Bold="False" Runat="server">
<%= ConditionalText.Eval("ADMIN_MARKET_INSTRUCTION") %>
</asp:Label>
</TD>
</TR>
</table>
bbbbbbbb
</form>

Nov 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: moondaddy | last post by:
I want to use a asp Label control (or a <div runat=server> element) in a template column of a datagrid. In the code behind in the grid's ItemDataBound event I need to dynamically set the innerHTML...
2
by: tshad | last post by:
Is there another way to put labels on a page other than asp:label? I have been building a page where I use a label to display the calculated result of some imput. I do it using Javascript. But...
2
by: Shapper | last post by:
Hello, I am creating a contact form in ASP.NET and I need to access the labels on Page_Load on my aspx.vb file. The other elements such as input box and text box don't need to be accessible....
0
by: Shapper | last post by:
Hello, I have an Asp:Label inside the HeaderTemplate of an ASP:Repeater: <asp:Repeater id="myRepeater" runat="server"> <HeaderTemplate> <asp:Label id="title" runat="server"></asp:Label> ... ...
2
by: footballhead | last post by:
I do some design work on a website that up until to now has been limited to defining CSS and HTML elements. Excuse me if I am using incorrect terminology, I am just starting out in this. I would...
4
by: pagates | last post by:
Hello All-- I have a number of <asp:Label CssClass="someclass">Text</asp:Labelcontrols on my page. I would like them to be shown as <div class="someclass">Text</div> rather than <span...
4
by: Guy Noir | last post by:
So, I have a table that I only want to appear after some event has fired. Using the asp:table control and the Visible property, this is a piece of cake. The problem is that when I try and drop a...
1
by: Steve Hershoff | last post by:
I'm using VS 2003, and need to extract the text from an asp label in my code-behind file. The label is part of a DataList's ItemTemplate. I've noticed that in my ascx file (we're using User...
0
by: Dhananjay | last post by:
hi all i have a problem on populating a message on asp:label server control.I am able to insert records into the table.but it is not populating any message like "Records entered successfully"....
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.