Hi is there a control that I can use that serves like HtmlInputFile but i displays only the directory
Thanks,
Jewel
Printable View
Hi is there a control that I can use that serves like HtmlInputFile but i displays only the directory
Thanks,
Jewel
You can use the OpenFileDialog, like this:
VB Code:
OFD.InitialDirectory = "D:\temp\david\my pictures\old pics" OFD.Filter = "Pictures (*.bmp;*.jpg;*.gif)|*.bmp;*.jpg;*.gif|All files (*.*)|*.*" OFD.ShowDialog() fn = OFD.FileName
Hi, sorry my question was not clear, i need only a directory browser not file browser...in a web form
thanks,
Jewel