datalist的ItemTemplate使用的问题
<ItemTemplate>
<%# Eval( "showname ")%>
<br />
<asp:Image ID= "Image1 " runat= "server " Height= "100 " Width= "100 " ImageUrl= " <%# Eval( "picture ")%> " /> </ItemTemplate>
<%# Eval( "showname ")%> 能用
为什么 <%# Eval( "picture ")%> 就说
The server tag is not well formed.
应该怎么用啊
还有如果我想在cs代码中使用showname这些字段的内容该怎么做
------解决方案--------------------= " <%# Eval( "picture ")%> "
这里改下:
= ' <%# Eval( "picture ")%> '