Download base64 data as a file in ASP.NET MVC
How to download base64 data as file in ASP.NET MVC Sometimes we have to use base64 data and download that data as a file. What is base64 ? Base64 is a group of similar binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation (form Wikipedia). In…