accessing formview controls

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
 
K

KJ

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top