Problem
You have SVGs that you wish to display on your website but you want to be able to re-use them without copying and pasting the code or creating a shared view.
Published on Feb 16, 2019 by Jamie Munro
Tags: ASP.NET | c# | htmlextension | svg
Published on Feb 5, 2019 by Jamie Munro
if (!string.IsNullOrEmpty(myString)) {
// Do something
}
Tags: ASP.NET | c# | string.isnullorempty | extensions
Published on Jun 7, 2017 by Jamie Munro
Every now and then I need to convert a date from Coordinated Universal Time (UTC) to Eastern Standard Time (EST). I always found myself trying to remember "Where did I use this last?". To avoid asking myself, I have now immortalized it on my blog.
Tags: ASP.NET | c# | timezones
Published on May 4, 2017 by Jamie Munro
ASP.NET Web API is a framework that is built upon the MVC (Model View Controller) principal to assist in rapidly building a RESTful API using the .NET framework.
By default Web API makes it easy to return common HTML content types, such as: JSON and XML. However, it requires a little bit more work to return a CSV using Web API. Read on to learn how.
Tags: ASP.NET | c# | web api | csv
Published on Jan 13, 2014 by Jamie Munro
var kernel = new StandardKernel(); kernel.Bind(x => { x.FromThisAssembly() .SelectAllClasses() .InheritedFrom(typeof(IService<>)) .BindSingleInterface(); });
Tags: Uncategorized | ASP.NET | c# | mvc | ninject
Published on Jan 7, 2014 by Jamie Munro
Published on May 27, 2013 by Jamie Munro
Published on May 20, 2013 by Jamie Munro
Published on May 13, 2013 by Jamie Munro
Published on May 6, 2013 by Jamie Munro
Published on Mar 5, 2013 by Jamie Munro
Published on Feb 18, 2013 by Jamie Munro
Published on Sep 19, 2012 by Jamie Munro