Posts

Showing posts with the label .net core

Opening landscape image in c#

Bitmap   source  = ( Bitmap ) Image . FromFile (path);                                                           if  ( Array . IndexOf ( source .PropertyIdList, 274) > -1)                     {                          var   orientation  = ( int ) source . GetPropertyItem (274).Value[0];                          switch  ( orie...

405 - HTTP verb used to access this page is not allowed

Just add the following config in the web.config file  <system.webServer>   <modules> <remove name="WebDAVModule" />   </modules>       <handlers> <remove name="WebDAV" />       </handlers>     </system.webServer>

The specified version of Microsoft.NetCore.App or Microsoft.AspNetCore.App was not found.

This means that .net core runtime is missing, just download it from here

How to decode url in asp.net mvc

HttpUtility.UrlDecode(encodedStr); In .Net Core WebUtility.UrlDecode(encodedStr)