File Open Dialog box

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

Guest

Hi

I want to open the file open dialog box when i click the asp.net button and when i select the particular folder, i want full path in the textbox besides it

is there anyway we can accomplish this task

appriciate any help from Pro

Krishna
 
can you not use the html input control. This is not an asp server control.

<input type=file>

Krishna said:
Hi,

I want to open the file open dialog box when i click the asp.net button
and when i select the particular folder, i want full path in the textbox
besides it.
 
Problem with input control is you have to select the file, but i want only folder to be selected
 
For what purpose? I mean what good is selecting a file on the client PC? You
can't do anything with it.....

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com


krishna said:
Problem with input control is you have to select the file, but i want only
folder to be selected
 
i am selecting a path(folder) in one text box and in another text box i am user enters a search string, then i am searching for all the documents in that folder.

above is the purpose of the folder selection, user needs like that.

Krishna
 
I'm assuming that this search is for a file on the server?
If so you can make this all yourself with some simple Folder object list,
allowing the user to select the folder from a DDL perhaps? Then pass that,
and the text/search input in?

--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com


Krishna said:
i am selecting a path(folder) in one text box and in another text box i am
user enters a search string, then i am searching for all the documents in
that folder.
 
Back
Top