如何在经典 ASP 中自动填充文本字段
我有 5 个文本框(name
、roll No
、address
等),当我在第一个文本框(>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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您需要通过 onkeypress javascript 函数调用来触发 ajax 调用,该函数调用会调用一个脚本,该脚本会查询您的数据库并在找到匹配项时为用户获取数据。
然后,您可以使用数据和进一步的 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.
You can then use the data and further ajax to populate the additional fields.