I am trying to download a file usin data uri in following manner.
<input type="button" onclick="window.location.href='data:Application/octet-stream;content-disposition:attachment;filename=file.txt,${details}'" value="Download" />
Problem is the downloaded file is always named 'Unknown' whatever i try in filename.
Is this the correct way to give filename or something else needs to be done. Help!!!