GettingNodeUrl - 是否可以使用方法以编程方式设置其值?

发布于 2024-08-13 01:52:41 字数 272 浏览 3 评论 0原文

从我的内容母版页中,我想获取 GettingNodeUrl 并以编程方式设置它:

我正在尝试执行的示例:

<'asp:SiteMapDataSource ID="SiteMapDataSource1" GettingNodeUrl="<%= SomeMethod()%>" runat="服务器"/>

但这会出现错误:

无法找到 URL 为“<%=SomeMethod() %>”的站点地图节点。

可以这样做吗?

From my Content MasterPage I want get the StartingNodeUrl and programmatically set it:

Example of what I'm trying to do:

<'asp:SiteMapDataSource ID="SiteMapDataSource1" StartingNodeUrl="<%= SomeMethod()%>" runat="server" />

but that gives the error:

Could not find the sitemap node with URL '<%=SomeMethod() %>'.

Is it possible to do this?

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

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

发布评论

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

评论(1

俏︾媚 2024-08-20 01:52:41

我认为您想在代码隐藏中执行以下操作,例如在 Page_Load() 中:

SiteMapDataSource1.StartingNodeUrl = SomeMethod();

您不能使用 runat=server 和 <%= %>;在 asp.net 文件的一个控件中。

I think you want to do the following in codebehind, for example in the Page_Load():

SiteMapDataSource1.StartingNodeUrl = SomeMethod();

You cannot use runat=server and <%= %> in one control in an asp.net file.

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