This topic is locked

Link to current record

9/19/2006 3:10:08 PM
ASPRunnerPro General questions
T
tlalle author

I have a very large table that I have divided into four different ASP Runner Views. I want eliminate the user from having to list everytime they view/edit a record. Can I insert a hyperlink that will open a page and filter by current record?

Sergey Kornilov admin 9/22/2006

Link to Edit page: tablename_edit.asp?editid=PrimaryKeyValue

Link to View page: tablename_view.asp?editid=PrimaryKeyValue

T
tlalle author 9/23/2006

Link to Edit page: tablename_edit.asp?editid=PrimaryKeyValue

Link to View page: tablename_view.asp?editid=PrimaryKeyValue


This was my process... use the "view" hyperlink from the generated list page.
on the view page, I place a hyperlink:
tableview2_view.asp?editid=ClientID
this gave me the view page I was expecting but, the record that is displayed is the record with the lowest ClientID value in the actual SQL table. This same record is displayed in my sequential view pages not mater what record I start with....
Also, the default view page header:

Merchant Location, Edit record [ClientID: ClientID]
instead of:

Merchant Location, Edit record [ClientID: 64]
Thanks,