This topic is locked

Add page defaults

6/25/2008 3:04:57 PM
ASPRunnerPro General questions
K
kerv21 author

Two quick questions...

  1. On my entry page I would like to "carry" the first two entryfield values that the user previously keyed to the next new record.
  2. Also how can you set focus to the third entryfield after a user has posted the new record to the database ?

J
Jane 6/27/2008

Hi,
please check following article:

http://www.xlinesoft.com/asprunnerpro/docs...sing_events.htm
To set up focus add custom JavaScript code on the Visual Editor tab.

Here is a sample:

<script>

document.forms.editform.value_FieldName3.focus();

</script>



where FieldName2 is your actual field name.