[jQuery] the list not reflected the change

[jQuery] the list not reflected the change


Hi, everyone, I have this code to show a list of product
qrRemision = New Query("vwlstRemisiones") //
vwlstRemisiones is a view
qrRemision.OrderBy = OrderBy.Asc("Fecha")
dtsCatalogo = New DataSet
dtsCatalogo = qrRemision.ExecuteDataSet()
When an element changed again and I want to show in the list not
reflected the change, I get the old value (the same value before the
change), any suggestions.
Thanks You.
Español
Hola a todos, tengo el siguiente codigo para mostrar una lista de
productos
-- CODE --
Cuanto hago un cambio en un elemento, la lista no la refleja, me
muestra el valor anterior, antes del cambio, alguna sugerencia.
Gracias.
Don Quijote de Nicaragua.
Elder Soto
COMPLETE CODE
Try
With Page.Request
imRecord =
Convert.ToByte(.Params("imRecord").ToString())
ipNumber =
Convert.ToInt16(.Params("pIndex").ToString())
End With
qrRemision = New Query("vwlstRemisiones")
qrRemision.OrderBy = OrderBy.Asc("Fecha")
dtsCatalogo = New DataSet
dtsCatalogo = qrRemision.ExecuteDataSet()
ipCount = fGetPageNumber(dtsCatalogo.Tables(0).Rows.Count,
ipSize)
If (ipNumber = 0) Then ipNumber = 1
Select Case imRecord
Case 1
If (ipNumber > 1) Then ipNumber -= 1
Case 2
If (ipNumber < ipCount) Then ipNumber += 1
End Select
iLastRow = ipNumber * ipSize
iFirstRow = iLastRow - ipSize
If (iLastRow > dtsCatalogo.Tables(0).Rows.Count) Then
iLastRow = dtsCatalogo.Tables(0).Rows.Count
iFirstRow = (ipNumber - 1) * ipSize
End If
If (ipCount <= 1) Then
sDisabled(0) = " disabled='disabled'"
sDisabled(1) = " disabled='disabled'"
Else
If (ipNumber = 1) Then
sDisabled(0) = " disabled='disabled'"
ElseIf (ipNumber = ipCount) Then
sDisabled(1) = " disabled='disabled'"
End If
End If
sHtml = "<table id='tbHead' class='sTableHead'
cellspacing='1'>" & NL
sHtml &= "<tr>" & NL
sHtml &= "<td>" & NL
sHtml &= "<table style='width:430px'>" & NL
sHtml &= "<tr>" & NL
sHtml &= "<td>" & NL
sHtml &= "<input type='button' id='btnNew' name='btnNew'
class='btnButton' "
sHtml &= "value='" & strNameButton & "' onclick='" +
strAccionCat + "'/>" & NL
sHtml &= "</td>" & NL
sHtml &= "<td valign='middle'>Buscar:</td>" & NL
sHtml &= "<td>" & NL
sHtml &= "<input type='text' id='txtFind' name='txtFind'
value=''/>" & NL
sHtml &= "<input type='button' id='btnFind' name='btnFind'
class='btnButton"
sHtml &= "' value='Buscar' onclick= 'GuardarCatalogos(4);'/