Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Please help.

<\script>
$(function() {
var availableTags
$( ";#tags" ).autocomplete({source: availableTags});

});</script>




if post back = true

Dim sqlSelect As String
Dim thisName As String = ""

sqlSelect = SELECT * from tablename;

Dim myConnection As New SqlConnection(tConnectionString)
Dim myCommand As New SqlCommand(sqlSelect, myConnection)
myConnection.Open()
Dim myReader As SqlDataReader
myReader = myCommand.ExecuteReader()

If myReader.HasRows Then
While myReader.Read()
thisName = myReader("clomun_name")
End While
myReader.Close()
myConnection.Close()

end if
return thisname


i have a textbox with id tag.

i have a jquery which would take the values from variable name avaliabletags

but unable to excute please help.
Posted
Updated 8-Nov-12 16:20pm
v3

1 solution

I this here is the solution for your question..

Using jQuery AutoComplete Plugin in ASP.Net

Please mark as answer if it solves your problem..!

thanks
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900