up vote 1 down vote favorite
1
share [g+] share [fb]

i have a file upload control for uploading excel file into SQL Server base on the worksheet. After each upload completion, the file path will be cleared from the control, i wanna keep the file path in the control so user don't need to browse for the file again for different worksheet. How to do that?

link|improve this question

66% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You can't.

You can't set the text of the upload control on the client-side for security reasons. If you could set it, it would mean you can effectively upload any file from the client machine without user interaction. Which would be bad :)

link|improve this answer
Ok...i got it!! thank you so much! – Danferd Aug 28 '09 at 3:10
My pleasure :) – Noon Silk Aug 28 '09 at 3:12
feedback

I found something ..at.. http://forums.asp.net/p/1075823/1679194.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.