accessing formview controls

  • Thread starter Thread starter Horace Nunley
  • Start date Start date
H

Horace Nunley

Hi, in my formview "insertItem" template, I have a fileupload control that I
need to handle when the page is saved.
I can't get to that control, or any of the controls thru code.

What gives?

Thanks
 
Without seeing any of the code, I would ask the following:

Do all the controls in the template have an ID attribute?
If so, you can find them using such code as:

Button Button1 = (Button)MyFormViewName.FindControl("Button1")

Please post some of the code so we know what hasn't worked.
 
Back
Top