Apparently Edge lacks a "save as" option because this is 2015 so "improved" apparently means "removing basic functionality".
And DB, you could use .htaccess stuff to have the server send headers for .CT files that should make the browser always offer to download it, since a lot of browsers nowadays will display .CT files since they recognize them as text unless the right MIME type and/or header is sent to tell them to download... even Chrome and such that you'd think should behave better.
Code:
<FilesMatch "\.(CT|ct)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum