如何检查aspx设计器页面中是否存在值?

时间:2012-05-31 09:37:59

标签: c# asp.net

我从db获得了一个字符串列表,如:

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>

1 个答案:

答案 0 :(得分:1)

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

<%# YourMethodName((string)Eval("AddCustomer")) %>