Saturday, March 02, 2013

Including JQuery in ASP.Net Project

JQuery can be included in your asp.net web application or web site using any one of the following methods.

  • Using Nuget Package Manager
    • In Visual Studio, Open Nuget package manager console, (Tools\Libarary Package Manager\Package Manager Console)
    • It will open a tool window
    • In that, type following command to install jquery
      • install-package jquery
  • Downloading from jquery from Official JQuery site
    • Go to official jquery site, (www.jquery.com)
    • Click on the download jquery button to download the latest verion.
    • Page will be directed to download page
    • In the jquery can be downloaded from any one of following mode
      • uncompressed- development
      • compressed- production
    • Include the downloaded file to the application using add existing item in that project.

No comments:

Post a Comment