I need example for search into weblistbox, me code for Deskop is:
if len(txtPosteo1.Text)=0 then
ListApuesta.listindex=-1
else
dim value As String = txtPosteo1.Text
Dim I As Integer
dim FoundAt As Integer = -1
FoundAt = -1
for i = 0 to (ListApuesta.ListCount - 1)
if instr(ListApuesta.cell(i,ListApuesta.SortedColumn),value) > 0 then
FoundAt = i
MsgBox (“Encontrado …”)
exit
end
next
if FoundAt >= 0 then
ListApuesta.ListIndex = FoundAt
MsgBox (“Se encontro” + FoundAt)
else
ListApuesta.listindex=-1
end if
end if
txtPosteo1 = “”
But, not work in Web