DataList、中的条件语句?
我正在尝试在 ASP.NET 3.5 中执行以下操作。 基本上,我将 LINQDataSource 绑定到 DataList。 有一个名为“已删除”的属性,如果它为真,我想显示不同的标记。 以下代码抛出错误:
<asp:DataList runat="server">
<ItemTemplate>
<% If CBool(Eval("Deleted")) Then%>
...
<% Else%>
...
<% End If%>
</ItemTemplate>
</asp:DataList>
这可能吗? 如果没有,还有哪些替代方案?
I am trying to do the following in ASP.NET 3.5. Basically, I am binding a LINQDataSource to a DataList. There is a property called "Deleted" and if it is true, I want to display different markup. The following code throws errors:
<asp:DataList runat="server">
<ItemTemplate>
<% If CBool(Eval("Deleted")) Then%>
...
<% Else%>
...
<% End If%>
</ItemTemplate>
</asp:DataList>
Is this possible? If not, what are the alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我可能建议保持代码前端的精简并通过函数结果写出所需的文本:
以及代码隐藏:
我希望它有所帮助。
I might suggest keeping the code-front lean and writing out the desired text via a function result:
And the code-behind:
I hope it helps.
解决方法之一是使用面板。
One option as a work-around would be to utilise a panel.
为什么不直接使用 RowDataBound 事件并检查字段的值呢? RowDatabound 非常适合您想要根据结果集中的值更改网格视图中的数据的情况。
来自 MSDN 的 RowDataBound 事件
Why not just use the RowDataBound event and check the value of your fields then? RowDatabound is ideal for these situations where you want to alter data in a gridview based on values in the result set.
RowDataBound Event from MSDN
也许使用数据列表的 ItemDataBound 事件。 对于 gridview 来说,它的 rowdatabound 事件非常适合根据结果集中的其他值更改值的显示。
ItemDataBound 事件
基本上在 itemdatabound 上,您可以使用条件。 同样,这是一个有根据的猜测,因为我通常使用 gridview 上的 RowDataBound 事件来完成此操作。
Perhaps use the ItemDataBound event of a datalist. For gridview's its the rowdatabound event that is ideal for altering display of values based on other values in the result set.
ItemDataBound event
So basically on itemdatabound you can play around with your conditionals. Again, this is an educated guess since I've typically done this with the RowDataBound event on gridview's.