如何从 asp 设计器页检查值是否存在
本文关键字:检查 是否 存在 asp | 更新日期: 2023-09-27 18:35:47
我从数据库获得一个字符串列表,如下所示:
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>
您是否尝试过编写方法然后从 aspx 页面调用它?
<%# YourMethodName((string)Eval("AddCustomer")) %>