DataList、中的条件语句?

发布于 2024-07-07 16:33:42 字数 416 浏览 9 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

仅冇旳回忆 2024-07-14 16:33:42

我可能建议保持代码前端的精简并通过函数结果写出所需的文本:

<asp:DataList runat="server">
    <ItemTemplate>
         <%# GetText(Container.DataItem) %>
    </ItemTemplate>
</asp:DataList>

以及代码隐藏:

protected static string GetText(object dataItem)
{        
    if (Convert.ToBoolean(DataBinder.Eval(dataItem, "Deleted"))
        return "Deleted";

    return "Not Deleted";
}

我希望它有所帮助。

I might suggest keeping the code-front lean and writing out the desired text via a function result:

<asp:DataList runat="server">
    <ItemTemplate>
         <%# GetText(Container.DataItem) %>
    </ItemTemplate>
</asp:DataList>

And the code-behind:

protected static string GetText(object dataItem)
{        
    if (Convert.ToBoolean(DataBinder.Eval(dataItem, "Deleted"))
        return "Deleted";

    return "Not Deleted";
}

I hope it helps.

海未深 2024-07-14 16:33:42

解决方法之一是使用面板。

<asp:DataList runat="server">
    <ItemTemplate>
        <asp:Panel Visible="<%# Eval("Deleted") %>">
            ...(deleted content here)...
        </asp:Panel>
        <asp:Panel Visible="<%# Not Eval("Deleted") %>">
            ...(other content here)...
        </asp:Panel>
    </ItemTemplate>
</asp:DataList>

One option as a work-around would be to utilise a panel.

<asp:DataList runat="server">
    <ItemTemplate>
        <asp:Panel Visible="<%# Eval("Deleted") %>">
            ...(deleted content here)...
        </asp:Panel>
        <asp:Panel Visible="<%# Not Eval("Deleted") %>">
            ...(other content here)...
        </asp:Panel>
    </ItemTemplate>
</asp:DataList>
生生不灭 2024-07-14 16:33:42

为什么不直接使用 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

jJeQQOZ5 2024-07-14 16:33:42

也许使用数据列表的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文