This topic is locked

BULK ADD

1/17/2009 2:19:35 PM
ASPRunnerPro General questions
S
srikanth author

hi i use asprunner6 build 766 im trying to do a bulk add by selcting an event "before selected record deleted" on the the required list page to another table and this works great,with out a problem.but what i actually need is among all selected records one of the fields data should go into a text area on another add page...
ie

a table has

field 1 field 2 field 3

field 1 field 2 field 3


field 1 field 2 field 3
and first 2 records in bold are selected then i want field 1 data from both the records to be transfered directly to a add page like TEMP_add.asp
pls help

J
Jane 1/20/2009

Hi,
here are some tips:

  1. declare new session variable in the List page: Before process event,
  2. save all deleted values in the variables in the List page: Before record deletedevent,
    Session("test") = Session("test") & "..."



3. update TEMP table in the List page: After group of records deleted event.