This topic is locked

next view instead of going to list page

10/1/2007 9:35:23 AM
ASPRunnerPro General questions
ncreveld author

Hi, is it possible that when you go from the listpage to the view oage instead of going back to the list page to see the netx view pade you can navigate from the view page to the netxt view page

Nico

Sergey Kornilov admin 10/1/2007

Nico,
I believe you can use a Insert ASP code function to insert the code that retrieves the next record ID and displays a link to the next View page.
Sample code:

str = "select top 1 ID from TableName order by ID where ID>" & Request.QueryString("editid1")

set rstmp = Server.CreateObject("ADODB.Recordset")

rstmp.Open str, dbConnection

if not rstmp.eof then

response.write "<a href=tablename_view.asp?editid1=" & rstmp("ID")

rstmp.clode : set rstmp=nothing

end if