我正在使用asp:菜单显示菜单栏。菜单控件使用站点地图作为数据源。现在我想根据权限从站点地图节点中删除一些子节点。我试图操纵Mennuitems但无法删除该子节点。
这是我的菜单控件的代码
<td class="TRMenu" valign="middle" align="left">
<asp:Menu ID="menu" runat="server" CssClass="menu" EnableViewState="False" Orientation="Horizontal"
DataSourceID="newSiteMap">
</asp:Menu>
<asp:SiteMapDataSource ID="newSiteMap" runat="server" ShowStartingNode="False" StartingNodeUrl="~/_PL/SPONSOR/Default.aspx" />
</td>
这是我的站点地图的代码
<siteMapNode url="~/_PL/SPONSOR/Default.aspx" title="SPONSOR" description="SPONSOR">
<siteMapNode url="~/_PL/SPONSOR/Home.aspx" title="HOME" description="HOME" />
<siteMapNode url="~/_PL/SPONSOR/Default.aspx?0" title="Dash Board" description="Dash Board" />
<siteMapNode url="~/_PL/SPONSOR/SiteViewAll.aspx" title="Site Info." description="Site Information" id="Site">
<siteMapNode url="~/_PL/SPONSOR/Site.aspx" title="Add/Update Site Info." description="Add/Update Site Information" id="Add"/>
<siteMapNode url="~/_PL/SPONSOR/SiteViewAll.aspx?0" title="View Site Info." description="View Site Information" />
</siteMapNode>
<siteMapNode url="~/_PL/SPONSOR/UserViewAll.aspx" title="User Info." description="User Info" >
<siteMapNode url="~/_PL/SPONSOR/User.aspx?New" title="Add/Update User Info." description="Add/Update User Information" />
<siteMapNode url="~/_PL/SPONSOR/UserViewHirerchical.aspx" title="View Hirerchical User" description="View Hirerchical User Information" />
<siteMapNode url="~/_PL/SPONSOR/UserViewAll.aspx?0" title="View User Info." description="View User Information" />
</siteMapNode>
<!--<siteMapNode url="~/_PL/SPONSOR/CRFProtocol.aspx" title="CRF Protocol" description="CRF Protocol" />-->
<siteMapNode url="~/_PL/SPONSOR/eCRFDownload.aspx" title="CRF Download Forms" description="CRF Download Forms" />
<siteMapNode url="~/_PL/SPONSOR/LogSheet.aspx" title="Log Sheet" description="Log Sheet" />
<siteMapNode url="~/Default.aspx?logout=SPONSOR" title="Logout" description="Logout" />
</siteMapNode>
我想根据权限
删除下面的节点<siteMapNode url="~/_PL/SPONSOR/Site.aspx" title="Add/Update Site Info." description="Add/Update Site Information" id="Add"/>
我尝试了以下方法。
protected void Page_Unload(object sender, EventArgs e)
{
foreach (MenuItem Item in menu.Items)
{
if (Item.Text.Contains("Site"))
{
string str = Item.ChildItems[0].Text;
Item.ChildItems.RemoveAt(0);
}
}
}
我在页面加载和预渲染方法中尝试了这一点,但是当页面加载时,节点仍然存在。
如何删除它?
答案 0 :(得分:2)
我认为实现它的正确方法是在菜单控件的DataBound-Event中:
<asp:Menu ID="menu" runat="server" EnableViewState="False" Orientation="Horizontal" OnDataBound="Menu_DataBound" DataSourceID="newSiteMap">
protected void Menu_DataBound(object sender, EventArgs e)
{
foreach (MenuItem item in menu.Items)
{
if (Item.Text.Contains("Site"))
{
string str = Item.ChildItems[0].Text;
Item.ChildItems.RemoveAt(0);
}
}
}
Page.Unload-Event查找Items但似乎不再能够影响控件的状态(可能是因为它用于其他事情)。