I have a file upload control, when users hit browse and select the file residing on their machine. After that I have a button which posts back to an action method and parses through the file and the populates a few fields in the model on the page. Then they hit the save button and It saves the files since I persist the file path in a hidden field. My problem is in my local development environment everything works fine. When I deploy it on a server, The code does not parse the file. Is it possible that the file is not being parsed because server cannot directly open and read a file which exists on users machine?
Thank you