在向导中找不到“下一步”按钮控件

发布于 2024-07-28 22:08:46 字数 473 浏览 5 评论 0原文

我正在尝试使用 FindControls 方法在向导中查找“下一步”按钮,以便将其设置为默认按钮,但我似乎找不到它。

这是在 IE 中查看源代码的控件名称:

ctl00_MainContentPlaceHolder_ApplicationWizard_StartNavigationTemplateContainerID_StartNextButton

这是我用来设置默认按钮的代码块:

Page.Form.DefaultButton = ApplicationWizard.FindControl("StartNavigationTemplateContainerID").FindControl("StartNextButton").UniqueID;

但是,它找不到 StartNavigationTemplateContainerID 控件。 我在这里做错了什么?

I am trying to use the FindControls method to find the Next Button in my Wizard so I can set it as the default button, but I can't seem to find it.

Here is the control name from View Source in IE:

ctl00_MainContentPlaceHolder_ApplicationWizard_StartNavigationTemplateContainerID_StartNextButton

This is the code block I'm using to set the default button:

Page.Form.DefaultButton = ApplicationWizard.FindControl("StartNavigationTemplateContainerID").FindControl("StartNextButton").UniqueID;

However, it can't find the StartNavigationTemplateContainerID control. What am I doing wrong here?

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

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

发布评论

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

评论(1

假扮的天使 2024-08-04 22:08:46

我在向导中找不到下一个按钮,但我是这样找到的:

Button btnNext = (Button)MyWizard.FindControl("StartNavigationTemplateContainerID$StartNextButton");

我发现此博客很有帮助。

I was having trouble finding the next button on my wizard, but I found it this way:

Button btnNext = (Button)MyWizard.FindControl("StartNavigationTemplateContainerID$StartNextButton");

I found this blog helpful.

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