but that gives the error:
Could not find the sitemap node with URL '<%=SomeMethod() %>'.
Is it possible to do this?
我认为您想在代码隐藏中执行以下操作,例如在 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():
You cannot use runat=server and <%= %> in one control in an asp.net file.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
我认为您想在代码隐藏中执行以下操作,例如在 Page_Load() 中:
您不能使用 runat=server 和 <%= %>;在 asp.net 文件的一个控件中。
I think you want to do the following in codebehind, for example in the Page_Load():
You cannot use runat=server and <%= %> in one control in an asp.net file.