I have an asp page with a grid of information. I am updating this page with information. After I update my page I would like to anchor my page down to the last updated id in the table. How can I do this? Thanks (see below for example)
<% below is pseudo logic
if page is posted then
get ids of checkboxes to perform updates on.
for each id in list of ids
perform update on each line item.
next
id = lastid
end if
%>
start html table
<a name="1">
row 1
<a name="2">
row 2
<a name="3">
row 3
end html table regards,
Brian
<% below is pseudo logic
if page is posted then
get ids of checkboxes to perform updates on.
for each id in list of ids
perform update on each line item.
next
id = lastid
end if
%>
start html table
<a name="1">
row 1
<a name="2">
row 2
<a name="3">
row 3
end html table regards,
Brian