OpenFileDialog – how to set file path to input type=text element after a file is selected in c#

I want to add a “Browse” button to my asp.net 4.5.1 project without using FileUpload control.. The end users should be able to browse and select a file in their local folder, and I want to set the complete path of that folder to my <input type='text' id='rptScreenShot' ... /> element.

How to Apply OpenFileDialog Function to a WebApplication

I am devoloping a Web Application, in which one Page has some neccessity that User should select any folder in the System and for ex if he selects ex:D:xyz, then this Path should be Saved in Database, I have written the Code for Storing in to Database and Remaining Every thing. But actually i think that if it is like a Browse Button click function to select the Folder, what i have made is, as i dont know how to make it in Web Application simply i used a textbox to be able to user to type the Path. Can, any one help me how to apply the Open File Dialog Functionality in a Web Page?

Quick and easy file dialog in Python?

I have a simple script which parses a file and loads it’s contents to a database. I don’t need a UI, but right now I’m prompting the user for the file to parse using raw_input which is most unfriendly, especially because the user can’t copy/paste the path. I would like a quick and easy way to present a file selection dialog to the user, they can select the file, and then it’s loaded to the database. (In my use case, if they happened to chose the wrong file, it would fail parsing, and wouldn’t be a problem even if it was loaded to the database.)