Thursday, March 2, 2017

Download excel (or other format) file from web api controller method

Since javascript does not recognize downloadable file formats, setting mere content-type header is not enough when we want to provide a facility to download a file from web api controller method.

This discussion provides a workaround for the issue:

http://stackoverflow.com/questions/14831860/download-excel-file-from-page-via-webapi-call

No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...