How to allow user to input html in ASP.NET MVC?
Whenever we submit HTML or JavaScript as input in ASP.NET MVC application we get an exception like "A potentially dangerous…
Whenever we submit HTML or JavaScript as input in ASP.NET MVC application we get an exception like "A potentially dangerous…
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…
How to manage the controller’s session state? Simply we can decorate the controller class with “SessionState” attribute. [SessionState()] attribute accepts…
ASP.NET MVC provides many built-in HTML Helpers. With help of HTML Helpers we can reduce the amount of typing of…