ASP.NET MVC Overview View Article Information Posted Date: 18. March 2014 Author: Anil Sharma Categories: .Net Framework, ASP.NET MVC Keywords: MVC, Dot Net Stuff, ASP.NET, MVC Overview, MVC Tutorials MVC is acronym of Model – View – Controller, is a software design pattern, which divide software application in to three major interconnected parts. Model- It is a class which is used to show or update view by using business logic. It is also used to validate user input. e.g. Employee, Student, etc. View – It is responsible to interact with users, it is the component that display the application to users. E.g. Textbox, Checkbox, etc. [Continue Reading]
Features of ASP.NET MVC View Article Information Posted Date: 16. March 2014 Author: Anil Sharma Categories: ASP.NET MVC Keywords: MVC Overview, MVC Features, MVC Advantage, MVC, Dot Net Stuff, Dot Net Tutorials The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating MVC-based Web applications. The ASP.NET MVC framework is a lightweight, highly testable presentation framework that (as with Web Forms-based applications) is integrated with existing ASP.NET features, such as membership-based authentication and master pages. The MVC framework is defined in the System.Web.Mvc namespace and is a fundamental, supported part of the System.Web namespace.applications. [Continue Reading]
Understanding HTML Helpers in ASP.NET MVC Framework. View Article Information Posted Date: 15. October 2012 Author: Anil Sharma Categories: ASP.NET MVC Keywords: HTML Helpers, MVC Features, MVC Overview, HTML Helpers in MVC, MVC, Dot Net Tutorials, Dot Net Stuff, MVC Tutorials One of the most important purpose of server controls in ASP.NET —favoring HTMLlevel code reuse. ASP.NET MVC doesn’t have the server controls but it have. To achieve these features in MVC, It needs be built programmatically based on dynamically discovered data. What’s a technology equivalent to server? controls in ASP.NET MVC? Here comes the sense of HTML helpers. controls in ASP.NET MVC? Here comes the sense of HTML helpers. [Continue Reading]