nopCommerce: Setting up Multi-Store on Your Local IIS
nopCommerce provides you with the ability to create multiple storefronts to sell products online. Being able to experience this on your localhost is simple to do and requires only a few steps. I will show you how to create 2 stores (store1.com and store2.com) in the following steps: Edit your hosts file Using your favorite […]
How To: Show System Information Just Like phpinfo()
PHP has functionality to show you the current running configuration of your application and the system it is running on by just calling phpinfo(). It is simple to do this. Just create a file in your site with the following code: <?php phpinfo(); ?> Unfortunately, ASP.NET MVC does not provide this functionality. So what I […]
How To: Add WebAPI to an Existing ASP.NET MVC Project
I am currently learning how to implement a RESTful API and am using RESTful API Tutorial as a resource. I quickly needed to add functionality to my existing ASP.NET MVC site that I am building hence the need to document my steps for others who might have a need in doing this also. I am working […]
How To: Install Hangfire without ASP.NET MVC
I recently needed to find a solution where I could run/schedule jobs within an ASP.NET website. The site is hosted where we do not have access to the server and cannot use Windows Services. Historically, it has been a problem running scheduled jobs within a web environment up until now. A hot new project called […]