I have the following code on my page:
<a class="btn-default btn" href="<AzureBlobContainerUrl>/<guid>.psd" download="@Model.FileName" target="_blank">Download
<span class="glyphicon glyphicon-export"></span>
</a>
@Model.FileName represents e.g. 'MyPhotoshopFile.psd'
First Problem: The downloaded file has the original GUID as filename not e.g. 'MyPhotoshopFile.psd'.
Second Problem: If the file is a e.g. PDF then Google opens the file directly in the current browser tab instead of downloading it.
Any solutions for that?