This topic is locked

How can I generate newvalues statement

9/10/2006 9:54:46 PM
ASPRunner.NET General questions
S
suneelp author

Hi:
How can i generate e.newvalues statements in edit.aspx.cs file for all the fields in table
thx

Eugene 9/11/2006

Try to use this code:

For i As Integer = 0 To e.NewValues.Count - 1

e.NewValues(i) = value

Next i