FileUpload does not show the HasFile property

  • Thread starter Thread starter Carlos
  • Start date Start date
C

Carlos

Hi,

I am trying to use this control but intellisense does not show the HasFile
property, It shows Equals, and ReferenceEquals.only. Can someone help?

Thanks!
 
Seems you are using the class name so you see only the static (or shared if
vb) members. You have to get at an object instance to be able to see
instance members...

How do you get at the control included in your page ? If you are using
"FileUpload" as a name for this control try to use something else and see if
using this other name fix the issue.

Else you'll have to show just 3/4 lines that shows how you access this
control...
 
Back
Top