I am changing a grid from editform to edittemplate. In the codebehind on the ItemDataBound event I am currently manipulating a field 'password' successfully by:$0$0$0$0$0 GridDataItem gridDataItem = e.Item as GridDataItem;$0$0 password = gridDataItem["password"].Text;$0$0gridDataItem["password"].Text = password blah blah blah;$0$0$0$0$0$0which works fine$0$0$0$0$0Now on the EditForm fields:$0$0$0$0$0The other fields in the edit form I am simply doing a <%# Bind("field") %>.$0$0$0$0$0$0but for the Password field, I'm guessing I need to 'copy' the GridEditItem value to the GridEditFormItem, but I'm not sure how?$0$0$0$0$0$0$0$0$0$0$0$0$0$0