I have a list page that I built. I want to use the same _edit page that was generated from ASPRunner. I want to be able to click on my Identifier(primary key) and be brought to the edit page like it would from the _list page generated from ASPRunner. this is what i have so far.
<input type=hidden id="editid" name="editid" value="" >
<input type=hidden id="editid2" name="editid2" value="" >
<input type=hidden id="editid3" name="editid3" value=""
<a href="xxx_edit.asp"><%= Rs("Primary Key") %></a>
I need to pass the value of my Rs("Primary key") to either strMasterKey or TargetPageNumber, not sure.
what other hidden field do i need to put into the form so that it can pass the correct parameters to the edit page.