根据TEXTBOX的值,不用回车从数据库里提取数据显示到页面上。
我用的是磁卡读卡器,读出数据后直接显示出用户信息。(asp.net+C#)只要能实现,什么方法都行。 --------------------编程问答-------------------- 那就ajax --------------------编程问答-------------------- 知道AJAX,但怎么用呢 --------------------编程问答-------------------- 举个例子给你:
function GetValueFromDB() {
PageMethods.GetValue(success);
}
function success(value) {
alert(value);
}
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods=true>
</asp:ScriptManager>
<input id="Text1" type="text" onchange="GetValueFromDB()" />
</div>
[WebMethod]
public static string GetValue()
{
//do somethings you want to do!
}
更多的上网搜索一下。
补充:.NET技术 , ASP.NET