I\'m trying to use the FileUpload control in ASP.NET
Here\'s my current namespace setup:
using System;
using System.IO;
using System.Collections.Gene
Adding a FileUpload control from the code behind should work just fine, where the HasFile property should be available (for instance in your Click event).
If the properties don't appear to be available (either as a compiler error or via intellisense), you probably are referencing a different variable than you think you are.