Server tags cannot contain <% ... %> constructs

M

Marcos MOS

Hi,

I've put a appSetting tag into my web.config, but when I try to catch its
value to my Image WebControl occurs the follow error: "Server tags cannot
contain <% ... %> constructs."

on myPage.aspx (Notice the ImageUrl tag):
<asp:Image id="Image1" runat="server"
ImageUrl=<%=System.Configuration.ConfigurationSettings.AppSettings["SrcImgSi
stema"]%> />

So, What's wrong with my ImageUrl attribution?
Is there any way to do that?

thanks a lot
Marcos
 
M

Marcos MOS

Thanks... but, I'd like to do it inside my .aspx file...

Isn't it possible?

tanks
Marcos

Sharon said:
you can set this property programmatically within a server script block:
Image1.ImageUrl =
System.Configuration.ConfigurationSettings.AppSettings.....
you cannot use <%%> inside a web control as web controls already run at the
server.
sharon.

Marcos MOS said:
Hi,

I've put a appSetting tag into my web.config, but when I try to catch its
value to my Image WebControl occurs the follow error: "Server tags cannot
contain <% ... %> constructs."

on myPage.aspx (Notice the ImageUrl tag):
<asp:Image id="Image1" runat="server"
ImageUrl=<%=System.Configuration.ConfigurationSettings.AppSettings["SrcImgSi
stema"]%> />

So, What's wrong with my ImageUrl attribution?
Is there any way to do that?

thanks a lot
Marcos
 
S

Sharon

you can set this property programmatically within a server script block:
Image1.ImageUrl =
System.Configuration.ConfigurationSettings.AppSettings.....
you cannot use <%%> inside a web control as web controls already run at the
server.
sharon.
 
S

Sharon

i don't know of any way, and there is no reason to do it inside the html
section.
one of the ideas behind web controls design, is the separation of code from
html.

Marcos MOS said:
Thanks... but, I'd like to do it inside my .aspx file...

Isn't it possible?

tanks
Marcos

Sharon said:
you can set this property programmatically within a server script block:
Image1.ImageUrl =
System.Configuration.ConfigurationSettings.AppSettings.....
you cannot use <%%> inside a web control as web controls already run at the
server.
sharon.
ImageUrl=<%=System.Configuration.ConfigurationSettings.AppSettings["SrcImgSi
stema"]%> />

So, What's wrong with my ImageUrl attribution?
Is there any way to do that?

thanks a lot
Marcos
 
B

Bruno Sirianni

In your code there are some errors :

The <%= construct can only be used in client script for write some value
from server (like old ASP).
your Image is server side not in client side!!!!

You can use the <%# construct. This is for binding value!
<asp:Image id="Image1" runat="server"
ImageUrl='<%#System.Configuration.ConfigurationSettings.AppSettings["SrcImgS
istema"]%>' />

this code require a DataBind() method call!!!

Brun
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,050
Latest member
AngelS122

Latest Threads

Top