1

我从数据库中得到一个字符串列表,例如:

AddCustomer,
AddUser,
ListCustomer,
ListUser

这些是asp页面的前缀。我需要隐藏和显示页面中的某些页面。以下是html片段:

<li>Customer Management
                    <ul>
                        <%if (AddCustomer)  //how to check whether my string is present or not, is it possible?
                          { %><li><a href="AddCustomer.aspx">Add Customer</a></li><%} %>
                        <li><a href="ListCustomer.aspx">List Customer</a></li>
                    </ul>
                </li>
4

1 回答 1

1

您是否尝试过编写方法然后从 aspx 页面调用它?

<%# YourMethodName((string)Eval("AddCustomer")) %>
于 2012-05-31T10:09:49.483 回答