This topic is locked

New Edit button in view page

9/18/2010 1:37:56 AM
ASPRunnerPro General questions
M
mr. zx author

Hi,
How Can i create Edit button in View page.
Regards,
Mr. ZX

A
ann 9/21/2010

Mr. ZX,
here is a sample code (HTML mode of the Visual Editor tab):

<input type=button value=Edit onclick="window.location.href='TableName_edit.asp?editid1={$custom_link}';">



Then proceed to the Before displayevent on theEvents tab and add the code:

xt.assign "custom_link", Request("editid1")
M
mr. zx author 9/26/2010



Mr. ZX,
here is a sample code (HTML mode of the Visual Editor tab):

<input type=button value=Edit onclick="window.location.href='TableName_edit.asp?editid1={$custom_link}';">



Then proceed to the Before displayevent on theEvents tab and add the code:

xt.assign "custom_link", Request("editid1")



Thanks Ann