Click here to Skip to main content
15,867,568 members
Articles / Web Development / ASP.NET

ASP.NET MVC and jQuery Part 1 – Getting Started

Rate me:
Please Sign up or sign in to vote.
4.78/5 (16 votes)
4 May 2010CPOL5 min read 56.7K   44   10
Getting started with ASP.NET MVC and jQuery - Part 1

This is the first post in a series about jQuery and ASP.NET MVC 2 in Visual Studio 2010.

If you’ve had web development experience with ASP.NET and JavaScript, it is highly likely that you’ve heard of or are maybe even interested in the new partnership of these two technologies.

Getting started isn’t terribly difficult, so I’m not going to over-complicate this post. A couple of things to clear up, then we’ll jump to the meat.

Be sure to check out the complete series on my blog.  

What is the ASP.NET MVC Framework?

Model-View-Controller, abbreviated as MVC, is a design pattern (a concept) that helps us organize our code in such a way that we can keep clear separation between our data, our behaviours & business rules and our user interface. Those parts, respectively are referred to as the model, the controller and the view.

The MVC Framework for ASP.NET MVC gives us tools support, conventions and a base set of classes to enable use of this pattern, rather than the default Page-Controller pattern that is used in ASP.NET. 

What is jQuery?

There is a reference to every element in an HTML document and JavaScript has access to them. With JavaScript, you can manipulate the DOM and write scripts to animate parts of your web page, make AJAX requests or perform validation.

Once you’ve written that code, you then need to keep a repository for it (you don’t want to write it again). When you want a new feature you might need to make breaking changes. You will have performance issues and browser compatibility problems, perhaps even platform-related issues.

jQuery is a library of JavaScript code where the kinds of things you want to do are already done. It is cross-browser compatible, has many pre-built components and has better performance with every release.

Think of jQuery as a way of “doing something” to “a group of things,” even if it is a group of one. You almost always begin by finding “the things” and then performing an action on them. “The things” are elements of the DOM like links, DIV tags, images, form elements, forms or the document root itself.

The Basic Steps

For you impatient types out there (like me):

  • Create an ASP.NET MVC 2 Web Application
  • Add the jQuery reference to the Site.Master to enable jQuery on all pages
  • Use the if(false) techinque to enable IntelliSense on partial views
  • Use script references to enable IntelliSense on stand-alone JavaScript files

The Meaty Version

Start Visual Studio 2010 and create a new project. Navigate to the Web category and select ASP.NET MVC 2 Web Application. Name your project (I used Spike.jQueryMvc) and press OK.

image

Visual Studio will ask you to create a Unit Test Project. Just say no for now (I’ll cover tests in a later post). Finish the wizard and you’ll have your MVC project created.

Open up the Site.Master file which you will find in Views –> Shared in the Solution Explorer. Expand the Scripts folder as well so that you can see the default scripts.

In the HEAD tag of your Site.Master, drag the jQuery ‘min’ file and, below it, the jQuery ‘vsdoc’ file. Wrap your vsdoc file with an if(false) statement. The vsdoc will never be written to the browser (because false is never true) but Visual Studio will pick up the file and enable IntelliSense with this trick.

image

We’re all set to use jQuery and Visual Studio 2010’s awesome IntelliSense.

Now, navigate to the Index.aspx page in Views –> Home and open it up. After the closing P tag, add the following code:

<script language="javascript" type="text/javascript">
$(function () {
   $("p").click(function () {
       $(this).slideUp();
   });
})
</script>

You’ll notice as you’re typing that Visual Studio is popping up help text for your jQuery functions.

image

Press F5 to run the app. You will be prompted to modify the Web.Config file; accept this.

The browser will open and you’ll be staring at a slightly-modified default MVC page. Click on the text “To learn more about ASP.NET MVC” and see your jQuery in action.

FTW? How Did That Work?

Here are the basics:

  • A SCRIPT tag was added to the document
  • We used a jQuery shortcut to wait for the document and run a function when it was completely loaded
  • When loaded, we found all the P elements in the DOM and created an event handler to respond to user clicks. This is done with an anonymous function
  • Inside our click event handler, we used another jQuery shortcut $(this) to select the P element that the user clicked on, and we told it to use the slideUp animation

The first shortcut is basically an event handler – in this case, an anonymous function – that gets executed when the document is loaded. You should use this on every page because jQuery can’t find elements that haven’t yet been added to the DOM.

$(function () {

})

Inside this function – again, that gets executed after the DOM is loaded – we use a jQuery selector to find all the P elements in the document and attach a click handler to them.

$("p").click(...);

The selector can work with any element, ID or class. For IDs and classes, you use the CSS-style sytax (# and . respectively), so for an input of type text with an ID of “first-name”, you could find it with jQuery like so:

$("#first-name")

All that’s left is the anonymous function we used as an event handler.

function () {
$(this).slideUp();
}

We call the slideUp animation for the clicked element and let jQuery do its business.

Feedback

I have started this series to help a friend who is learning about web development. I found that by writing these tips out that I was gaining a better understanding of the underlaying technologies myself. I hope it can serve as a reference to others out there as well.

That said, if there’s something you’d like to point out, a question you have or a topic you’d like me to cover, please let me know and I will do my best to respond.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
For almost 30 years I have been working with computers, learning a myriad of languages and participating in various computing environments.

Though I have been mentoring other developers for the last decade, I have recently found a strong interest in writing and am learning to translate the fun of in-person teaching to something I can get into article form.

I enjoy following technology trends, new gadgets and trying to guess where innovation will lead us next (I'm kinda holding out for a robot-served utopia, but willing to submit to our future robot leaders).

I am a guy who is passionate about my faith, my family and a cure for Juvenile Diabetes (my son lives with this disease).

Comments and Discussions

 
GeneralMy vote of 5 Pin
Carsten V2.011-Dec-12 18:38
Carsten V2.011-Dec-12 18:38 
GeneralMy vote of 5 Pin
Monjurul Habib4-Dec-11 0:08
professionalMonjurul Habib4-Dec-11 0:08 
GeneralMy vote of 4 Pin
Lukas Poellabauer2-Oct-11 23:24
Lukas Poellabauer2-Oct-11 23:24 
if(false)... does not work for me. i used /// <reference path="../jquery-1.6.4-vsdoc.js"> instead
GeneralRe: My vote of 4 Pin
TheDragon00710-Jan-12 0:06
TheDragon00710-Jan-12 0:06 
GeneralGood article Pin
Donsw2-Jun-10 14:56
Donsw2-Jun-10 14:56 
QuestionWhere to get the jQuery .js files from? Pin
Mihai Maerean25-May-10 19:59
Mihai Maerean25-May-10 19:59 
AnswerRe: Where to get the jQuery .js files from? Pin
TheyCallMeMrJames26-May-10 3:59
TheyCallMeMrJames26-May-10 3:59 
GeneralExternal .js files Pin
Shayne P Boyer27-Apr-10 6:55
Shayne P Boyer27-Apr-10 6:55 
GeneralRe: External .js files Pin
TheyCallMeMrJames27-Apr-10 7:00
TheyCallMeMrJames27-Apr-10 7:00 
GeneralRe: External .js files Pin
TheyCallMeMrJames27-Apr-10 10:24
TheyCallMeMrJames27-Apr-10 10:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.