Master.cs 上的锚点 href 属性被覆盖

发布于 2024-10-29 04:30:12 字数 565 浏览 1 评论 0原文

我们有一个带有菜单项(html 锚点)的母版页(asp.net),不应使用特定用户角色的 href 填充 - 但它始终显示!

Master.cs 具有:

<li><a id="manage" runat="server" href="~/Views/Manage.aspx" title="Manage details">Manage </a></li>

在 Master.cs 的 OnLoad 事件中,如果它是某种用户类型,我们将删除 HRef 属性 - 这似乎工作正常,我已在“监视”窗口中检查过。

manage.Attributes.Remove(Constants.HREF_ATTRIBUTE);

监视窗口确认 HRef 属性已被清空,但一旦显示 Master.cs,HRef 就会再次返回,就好像 aspx 中的 HRef 覆盖了代码中的“删除”一样。

请记住,这是我的第一篇文章 - 我尝试用谷歌搜索它,但无济于事。非常感谢任何帮助。 谢谢, 皮特

We have a Master page (asp.net) with a menu item (html anchor) which should not be populated with a href for a certain user role - but it's always showing!

The Master.cs has:

<li><a id="manage" runat="server" href="~/Views/Manage.aspx" title="Manage details">Manage </a></li>

In the OnLoad event on the Master.cs we remove the HRef attribute if it's a certain user type - that seems to work OK, I've checked in the Watch window.

manage.Attributes.Remove(Constants.HREF_ATTRIBUTE);

The Watch windows confirms the HRef attribute being blanked out but as soon as the Master.cs is displayed the HRef is back again, as if the HRef in the aspx has overwritten the 'removal' in the code.

Bear in mind this is my first post - I've tried to google it, to no avail. Any help greatly appreciated.
Thanks,
Pete

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

相思碎 2024-11-05 04:30:12

由于您的锚点是服务器端控件,因此您应该使用其 Href 属性而不是删除属性:

manage.Href = string.Empty;

Since your anchor is a server side control you should use its Href property instead of removing an attribute:

manage.Href = string.Empty;
新一帅帅 2024-11-05 04:30:12

我修复了它——这是一个奇怪的修复!我只能说,我正在修复这个系统的错误,它不是我写的!

解决方案中缺少图像,因此发生错误然后被吞噬 - 导致重定向到应用了 master.css 的错误页面。

非常奇怪,我不希望有人得到。
感谢您的关注,
皮特

I fixed it - it's a weird fix! Can I just say, I'm bug fixing this system, I didn't write it!

A image was missing from the solution, so an error was occurring then being gobbled - causing a redirect to the error page which had the master.css applied to it.

Very strange and not one I'd expect anyone to get.
Thanks for looking,
Pete

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文