为什么 C# 需要一个“;”在我的项目模板中?
我有一个包含以下代码的页面:
<ItemTemplate>
<a id="el_<%# ((MyType)Container.DataItem).FirstName) %>"
class='activate_edit_modal' popupId="modal_window" title="Click to edit.">
Edit
</a>
</ItemTemplate>
当我尝试运行该页面时,出现以下错误: CS1002: ;预期
突出显示
正下方的行。这是为什么呢?我认为当您使用 <%# XXXXX %>
时,您不使用分号。
我尝试将其更改为 <%# Eval("FirstName") %>
,这似乎有效。
I have a page with the following code:
<ItemTemplate>
<a id="el_<%# ((MyType)Container.DataItem).FirstName) %>"
class='activate_edit_modal' popupId="modal_window" title="Click to edit.">
Edit
</a>
</ItemTemplate>
When I try to run the page, I get the following error: CS1002: ; expected
with the line directly under <ItemTemplate>
highlighted. Why is this? I thought that When you use <%# XXXXX %>
, you don't use a semicolon.
I tried changing this to <%# Eval("FirstName") %>
and that seems to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哎呀,我刚刚意识到我有一个额外的“)”导致了错误。
<%# ((MyType)Container.DataItem).FirstName) %>
需要_<%# ((MyType)Container.DataItem).FirstName %>
Oops, I just realized that I have an extra ")" which caused the error.
<%# ((MyType)Container.DataItem).FirstName) %>
needs to be_<%# ((MyType)Container.DataItem).FirstName %>
您是否尝试过对 id 属性使用单引号?
Have you tried single quotes for the id attribute?