0

大家好,我坚持如何使用 ajax 工具包自动完成扩展器从数据库中获取记录,我查看了以下内容:

http://www.youtube.com/watch?v=2tZiVY8qs1c
http://www.andreavb.com/forum/viewtopic_9310.html
http://forums.asp.net/t/1626754.aspx/1
http://www.programmersheaven.com/article/100738-Using+AutoComplete+in+the+AJAX+Toolkit+in+VB.NET/info.aspx
http://www.ajaxtutorials.com/ajax-tutorials/using-autocomplete-in-the-ajax-toolkit-in-vb-net/
http://www.c-sharpcorner.com/uploadfile/cd3aa3/creating-auto-complete-textbox-using-autocompleteextender-control-of-ajax/

我似乎找不到可以帮助我使用 asp.net 数据库的数据库,而这里显示的都是网站驱动的,而不是数据库。您能否帮助我创建或指导我使用数据库在 vb.net aspx pages 2010 中创建自动完成的教程

我有一个带有一个表的测试数据库,表内有以下属性:

TESTID int PK
Name nvarchar(100)
LName nvarchar(100)

感谢您提供的任何帮助

编辑:

当我尝试添加(添加自动完成页面方法)时,出现以下错误:

Unexpected error (TargetInvocationException); Exception has been thrown by the target of an invocation.
at System.RuntimeMethodHandle._InvokedMethodFast(IRuntimeMethodInfo  method, Object target, Object[] arguments, SignaureStruct@sig, 

“它继续写很多东西”

当我按下确定

我的 aspx 页面显示以下带有绿色下划线的代码:

Partial Class _Default
    Inherits System.Web.UI.Page

Public Function GetComletionList() As System.String[]

    End Function
4

1 回答 1

0

您需要设置一个 Web 服务,以返回数据。在此 Web 服务的 vb 代码中,连接到数据库并检索数据。

于 2012-04-22T20:59:10.457 回答