By Sandeep Mukhela, on October 31st, 2011%
If your ASP.NET application crashes, has an unhandled exception, hangs or otherwise becomes brain-dead, it will cause the application pool to recycle. Sometimes your application pool recycles for no obvious reason. This is usually a configuration issue or it may be caused by your app performing file system operations in the application directory. Many times developers . . . → Read More: ASP.NET 4.0 Hosting :: The Reasons Application Pool Recycle
By Wayne Plotche, on October 17th, 2011%
This blog posts shows a step-by-step instruction how to integrate the Unity 2.0 dependency injection container in an ASP.NET MVC 3 web application.
Create MVC 3 project and add Unity 2.0
Create a new “ASP.NET MVC 3 Web Application” project in Visual Studio 2010. For simplicity, we will use the project template “Internet Application”, which adds some some . . . → Read More: ASP.NET MVC 3 Hosting :: How to Integrate the Unity 2.0 Dependency Injection Container in an ASP.NET MVC 3
By Sandeep Mukhela, on October 14th, 2011%
What is an IP address?
An IP address is a set of 4 numbers assigned to each device on a computer network. When we apply this definition for the internet, the IP address can be considered a numerical representation of a website address. For example, the domain google.com would go to the IP address 73.14.213.99.
How do IP . . . → Read More: ASPHostCentral.com – The Importance of having a UNIQUE IP Address on your Website!
By C Miller, on October 12th, 2011%
When someone types in the address: www.yourdomain.com that name is translated into numbers (called an IP address) and then the computer is directed to that IP address which is the web site. Every web site on the internet is found not by its domain name but by its IP address.
You can reach a site by typing . . . → Read More: ASPHostCentral.com :: What is the difference between Shared IP and Dedicated/Unique IP Address?
By Stephen Jackson, on October 6th, 2011%
This blog post will give an short overview of the steps needed to integrate the Apache log4net logging framework to an ASP.NET MVC 3 Web application.
For simplicity, we are starting from a new ASP.NET MVC 3 Web application and choose the “Internet Application” template to have some default controllers and views. To include the log4net one . . . → Read More: ASP.NET MVC 3 Hosting : Using Apache’s Log4Net Logging Framework in ASP.NET MVC 3
By C Miller, on August 26th, 2011%
ASP.NET MVC3 includes a new class HttpNotFoundResult in System.Web.Mvc namespace.
HttpNotFoundResult: Instance of HttpNotFoundResult class indicates to client(browser) that the requested resource was not found. It returns a 404 HTTP status code to the client. Generally we return 404 status code if a requested webpage is not available. In case of MVC applications we return 404 status . . . → Read More: ASP.NET MVC 3.0 Hosting :: Getting your ASP.NET MVC Application to return 404 HTTP Status Code
By Wayne Plotche, on August 4th, 2011%
ASP.NET MVC 3 is delivered with a lot of « Helpers ». These methods help the developer to improve his productivity and the quality of his Html code. If you don’t know yet the MVC Html Helper, you can read the MSDN page about HtmlHelper or read this article with plenty of examples.
Before reading this post and . . . → Read More: ASP.NET MVC 3 Hosting :: Binding an Enum to a DropDownList in ASP.NET MVC 3
By Wayne Plotche, on July 30th, 2011%
In MVC + Entity framework has certain change is that how can we introduce service layer or any code level business layer which responsible to data management with executes store procedure.
So I have introduce a service layer with is write business logic based on model.
Model Structure
In general I have added all model in one separate project . . . → Read More: ASP.NET MVC 3 Hosting :: Service Layer in MVC
By C Miller, on July 26th, 2011%
Every website has to display data and every website has a Grid control. In ASP.NET MVC 3 there’s the WebGrid, which is part of the Microsoft Web Helpers library. This can be downloaded through NuGet (formerly NuPack). NuGet is a free open source package manager that makes it easy for you to find, install, and use . . . → Read More: ASP.NET MVC 3 Hosting :: Working with ASP.NET MVC 3 WebGrid (get selected row)
By Wayne Plotche, on July 12th, 2011%
I’m currently developing a personal project using ASP.NET MVC 3 RC2 and the Razor view engine, one of the things that most developers spend a lot of time doing is tweaking code to gain the best performance out of an application and this is something that I’ve recently spent some time on within the confines of . . . → Read More: ASP.NET MVC 3 Hosting :: ASP.NET MVC 3 Razor C# View Engine