我从数据库中得到一个字符串列表,例如:
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>