This topic is locked

Add New Record

3/5/2009 4:16:06 AM
ASPRunnerPro General questions
J
jeff.w author

ASPRunner 6.0
After adding a new record, is it possible to either display the autonumber assigned to that record on the display,
eg <<< Record XXXX was added >>> instead of <<< Record was added >>>
or a message pop up box saying <<< Record XXXX was added >>>
or be redirected to the view page showing this newly added record.
TIA

J
Jane 3/5/2009

Hi,
use After record added event on theEvents tab to change this message.

Here is a sample:

message = "<div class=message><<< Record " & keys("FieldName") & " was added >>></div>"



where FieldName is your actual field name where primary key is stored.

J
jeff.w author 3/5/2009

Hi,

use After record added event on theEvents tab to change this message.

Here is a sample:
where FieldName is your actual field name where primary key is stored.


Many thanks
Jeff