gpt4 book ai didi

asp.net - 访问 aspx.cs 中的 HTML 按钮(代码隐藏)

转载 作者:行者123 更新时间:2023-11-28 04:43:09 25 4
gpt4 key购买 nike

我有一个疑问:如果我在源代码中写一个HTML按钮,我如何在aspx.cs中访问它,你能给我一些例子吗?

最佳答案

如果您在按钮上设置一个 ID 并设置 runat属性为 server您将能够使用 FindControl 从代码隐藏中获取它.

HTML:

<input type="button" id="myButton" runat="server" />

代码隐藏(C#):

Button myButton = (Button) FindControl("myButton");

此外,除了使用 html 之外,您还可以使用定义的 ASP 标签作为按钮...

<asp:Button ID="myButton" runat="server" />

现在您在代码隐藏中获得了自动完成等的帮助:

myButton.Text = "My Button";

关于asp.net - 访问 aspx.cs 中的 HTML 按钮(代码隐藏),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2019985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com