Author: Ashutosh Tripathi

How To Redirect HTTP to HTTPS using C#
While developing web application many of us must have observed that after deploying the application to web server, web page url starts with http but not the secured one https.
So if we want to redirect url from HTTP to HTTPS there is a very simple solution in C#
What’s new in .NET Framework 4.7.1 (Part 3)
Hello Readers, This post is in continuation with “What’s new in .NET Framework 4.7.1 Part 2“. [Whats new in .Net Framework 4.7.1 Part 1,Whats new in
What’s new in .NET Framework 4.7.1 (Part 2)
Hello Readers, This post is in continuation with “What’s new in .NET Framework 4.7.1 Part 1“. New Features includes: Accessibility improvements .NET Framework 4.7.1 brings in
What’s new in .NET Framework 4.7.1 (Part 1)
Hello Readers, Today I am writing about new features implemented on the recently released .NET Framework 4.7.1. On October 17, 2017 Microsoft has announced the
Download a PDF file stored in a network location
In View page (.cshtml) Create a Link using anchor tag and define href field as: href = ‘@Url.Action(“Download”, “YourControllerName”,new{filePath = “”})’