This topic is locked

Edit Page - History Field

6/24/2009 1:53:25 PM
ASPRunnerPro General questions
S
sergioi author

I want to fill a History Field with a blank textbox on the Edit Form. I am already showing the History field on text and I manually added a html Textbox.

Is there a way to retrieve this textbox like Request("textboxname")? I have tried this on the events before the update, but it gives me an error saying that I cannot use Request afeter BinaryRead.
I want to do something like this (AspRunner 6.1):

Edit Page - Event Before Record updated:

Values("historyfieldname") = oldvalues("historyfieldname") & Request("textboxname")
Thank in advance.
Regards,
Sergio

J
Jane 6/25/2009

Hi,
I recommend you to use field values for this purpose.

Here is a sample:

values("historyfieldname") = oldvalues("historyfieldname") & values("textboxname")