This topic is locked

Confirmation Page with Input Data

1/7/2007 1:35:17 PM
ASPRunnerPro General questions
K
kconzel author

Sorry for the error earlier. I didn't know.

I would like to redirect the user after add/edit to a "confirmation" page made out of the "view" page that gives the information just input.

Table = SignOff and Field = RecId

I figure you use a max(RecId) but too new to know more.

Thanks for any help you can be.

Y'all are incredible.

Sergey Kornilov admin 1/7/2007

Something like this will work:

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

rstmp.Open "select max(RecID) from SignOff", dbConnection

response.redirect "SignOff_view.asp?editid1=" & rstmp(0)
K
kconzel author 1/7/2007

Thanks. I'll try it and let you know.

Something like this will work:


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

rstmp.Open "select max(RecID) from SignOff", dbConnection

response.redirect "SignOff_view.asp?editid1=" & rstmp(0)