Search results for query: *

  1. S

    Getting textbox value from FormView EditTemplate

    This code doesn't work Dim txt As TextBox txt= CType(frmPersonal.Row.FindControl("tbxExpiry"), TextBox) MsgBox(txt.Text) This one does Dim lbl As label lbl = CType(frmPersonal.Row.FindControl("lblExpiry"), label) MsgBox(lbl.Text) It can...
  2. S

    Getting textbox value from FormView EditTemplate

    Hi there, quite new to all this. I have a formview on a page with some textboxes. The textbox I want to get the value of is bound in the EditTemplate to a datetime field, and is called tbxExpiry. The form is called frmPersonal. I have a button at the bottom of the form with in the OnCLick...
Back
Top