提交按钮点击
我有用于数据接受的GUI。 我需要在单击提交按钮时将表单的所有参数传递给 C# 中声明的函数。 请帮忙。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有用于数据接受的GUI。 我需要在单击提交按钮时将表单的所有参数传递给 C# 中声明的函数。 请帮忙。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用 .Net,我们有多种类型的提交标记,一种以 开头,另一种以
开头。 runat="server"
属性,您将使其在按钮后面也具有 C# 代码。Using .Net us have too types of submit tags, one starting with
<asp:
and the other starting with<input
. the <input html tag can call javascript and if you add therunat="server"
attribute, you will enable it to also have C# code behind the button.首先,您需要创建一个 aspx 页面(例如
submission.aspx
),用于接收表单的 POST 提交。在该页面中,您可以包含.cs
文件,其中包含要将数据传递到的方法/函数。接下来,您要将数据提交到
submission.aspx
。为此,您需要一个将数据提交到submission.aspx
的表单。如果你想执行ajax提交,你可以使用jquery并使用这段代码:
我不知道这是否对你有帮助。
PS:我已经很长一段时间没有使用 .NET 进行 Web 编程了。但是我在这个答案中所写的内容对于任何 Web 编程语言/框架都普遍适用。
First of all, you will need to create an aspx page (say
submission.aspx
) that will receive the POST submission of your form. In that page, you can include your.cs
file that contains the method/function you want to pass the data to.Next, you want to submit you submit your data to
submission.aspx
. To do that, you will need to have a form which will submit its data tosubmission.aspx
.If you want to perform ajax submission, you can use jquery and use this code:
I wonder if all that helped you.
PS: I haven't used .NET for web programming in a long time now.. but what I've written here in this answer hold universally true for any web programming language/framework.
如果你使用asp.net,你只需要双击按钮(如果它是一个asp按钮),它应该会产生一个点击事件。
在单击事件中,您可以获得其他控件,例如
default.aspx 代码
Codebehind
Edit。你只要上一堂课就可以了。
If your using asp.net you just need to double click the button(if it is an asp button) and it should make a click event.
In the click event you could get your other controls like
default.aspx code
Codebehind
Edit. You just make a class.