ASP.NET Equivalent of FolderBrowserDialog

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've used the FolderBrowserDialog control in Windows Forms many times, but is
this control available in ASP.NET webforms? Thanks.
 
You can't import the namespace System.Windows.Forms namespace(windows
specific) in an ASP.NET application. Have a look at HtmlInputFile in
System.Web.UI.HtmlControls
 
Back
Top