This topic is locked

Calcualted field

8/25/2003 7:12:39 PM
ASPRunnerPro General questions
M
MaxLm author

Need to edit my ASP codes to:

  1. Currently, for some reaon, ASPrunner does not show the links to the other ASP Pages on the Listings and other pages. Need to incorporate the links to allow users to navigate thru the pages.
  2. How do I make ASP runner do its calcualtion on numeric fields. For example:

    Table: Table1

    Fields:

    Field1

    Field2

    field3

    Result (not editable)
    Result=(field135)+(field226)+(field3*10)
    Thanks,

swat 8/26/2003

Fields:

Field1

Field2

field3

Result (not editable)
Result=(field135)+(field226)+(field310)
inside of the do-loop:
create a variable

result = ""

then do the loop

rs.eof

Result=(field1
35)+(field226)+(field310)
how ever I am not sure how to make it (not editable)
thx
swat

M
MaxLm author 8/26/2003

Thanks swat.