如何在经典 ASP 中自动填充文本字段

发布于 2024-11-18 09:34:57 字数 179 浏览 1 评论 0原文

我有 5 个文本框(nameroll Noaddress 等),当我在第一个文本框(>name) 那么它应该自动填充我填写的所有 4 个字段。

我在 ASP.Net 中得到了这个,但我想在经典 ASP 中使用它。

I have 5 textboxes (name, roll No, address etc) and I want that when I fill my name in first text box (name) then it should fill my all 4 fields automatically which I filled.

I got this in ASP.Net but I want to use this same in classic ASP.

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

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

发布评论

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

评论(1

爱的故事 2024-11-25 09:34:57

听起来您需要通过 onkeypress javascript 函数调用来触发 ajax 调用,该函数调用会调用一个脚本,该脚本会查询您的数据库并在找到匹配项时为用户获取数据。

<input type="text" id="uName" name="uName" value="" onkeypress="getUserDetails(this.value)"/>

然后,您可以使用数据和进一步的 ajax 来填充其他字段。

Sounds like you'll need to fire off an ajax call via a onkeypress javascript function call that calls a script which queries your database and gets data for user when it finds a match.

<input type="text" id="uName" name="uName" value="" onkeypress="getUserDetails(this.value)"/>

You can then use the data and further ajax to populate the additional fields.

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