How To Create A Save File Dialog In Html
Hi um new to html and I want to know the way to create a file save dialog box. It should not be a file open dialog box. is it possible to do in html ? I found these two components
Solution 1:
If you want to make download link ( Allowing user to download file server ). You can <a>
tag to give server path. So when user click on the link browser will ask user to save the file.
Ex:
<ahref="link/to/file.zip">Download</a>
Post a Comment for "How To Create A Save File Dialog In Html"