如何在 onclick 后面的 ASP.NET/C# 代码中更改表单数据?

发布于 2024-12-02 00:46:15 字数 280 浏览 4 评论 0原文

我在表单中有这样的输入:

 <input name="keywords" type="text" id="keywordSearch" value="Enter keywords / publication number" class="watermark" />

然后,我有一个单击函数,当用户提交表单时会调用该函数。如何获取关键字的值并在后面的代码中的点击提交函数中更改它?

是 Form.keywords.value = '我的关键字'; 吗?

I have this input in a form:

 <input name="keywords" type="text" id="keywordSearch" value="Enter keywords / publication number" class="watermark" />

I then have an click function that gets called when the user submits the form. How do I get the value of the keywords and change it in the click submit function in my code behind?

Is it Form.keywords.value = 'my keywords';?

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

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

发布评论

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

评论(1

雪花飘飘的天空 2024-12-09 00:46:15

使用 Request.Form["keywords"] 检索已发布的值。

Use Request.Form["keywords"] to retrieve the value that was posted.

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