I have a FileUpload control as follow:
<asp:FileUpload ID="AttachmentsUploader" runat="server"
Width="295px" size="30px" BorderColor="Black" BorderStyle="Solid"
Height="31px" />
When I click the Upload button I want the user to be taken to the path value "pathvalue" I read from the database. The file types to be shown are only those of type "doc", ".docx" and".pdf". The When the user click on save button, the selected file is transfered
to the storage location value "storevalue" where the filename value is renamed to be identical to one of the related database field, LetterID.
For exmple, if the user click the Upload button, the Window shown is "C:\Users\Ali\MyDocuments" where "C:\Users\Ali\MyDocuments" is stored at the DB field "Path ...
Go to the complete details ...