Professionallearn.com

[ Log On ]
< <
 

ARTICLES

Submitted by:P.R.S
7/29/2012 12:00:00 AM
Language: Programming

Model View Controller architecture aims to separate an application into three parts:

Model: It is the business logic of an application. From an object oriented perspective it would consist of a set of classes that implement the c

Read more...
Submitted by:P.R.S
7/29/2012 12:00:00 AM
Language: Programming

The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating 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 master pages and membership-based authentication. The MVC framework is defined in the System.Web.Mvc assembly.

MVC design pattern

Model View Controller design pattern

MVC is a standard design pattern that many developers are familiar with. Some types of

Read more...
Submitted by:P.R.S
7/29/2012 12:00:00 AM
Language: Programming

You must consider carefully whether to implement a Web application by using either the ASP.NET MVC framework or the ASP.NET Web Forms model. The MVC framework does not replace the Web Forms model; you can use either framework for Web applications. (If you have existing Web Forms-based applications, these continue to work exactly as they always have.)

Before you decide to use the MVC framework or the Web Forms model for a specific Web site, weigh the advantages of each approach.

Advantages of an MVC-Based Web Application

The ASP.NET MVC framework offers the following advantages:

Read more...
Submitted by:P.R.S
7/29/2012 12:00:00 AM
Language: Programming

The ASP.NET MVC framework provides the following features:

  • Separation of application tasks (input logic, business logic, and UI logic), testability, and test-driven development (TDD). All core contracts in the MVC framework are interface-based and can be tested by using mock objects, which are simulated objects that imitate the behavior of actual objects in the application. You can unit-test the application without having to run the controllers in an ASP.NET process, which makes unit testing fast and flexible. You can use any unit-testing framework that is compatible with the .NET Framework.

Read more...
Submitted by:P.R.S
7/18/2012 12:00:00 AM
Language: SQL

Well, firstly you've omitted the '+' from your string. This way of doing things is far from ideal, but you can do

crea

Read more...
<<Priv    Next>>

Share Your Source Code or Article

Do you have source code, articles, tutorials, web links, and books to share? You can write your own content here. You can even have your own blog.

Submit now...

Sponsor