万本电子书0元读

万本电子书0元读

顶部广告

ASP.NET jQuery Cookbook - Second Edition电子书

售       价:¥

5人正在读 | 0人评论 9.8

作       者:Sonal Aneel Allana

出  版  社:Packt Publishing

出版时间:2016-02-25

字       数:233.7万

所属分类: 进口书 > 外文原版书 > 电脑/网络

温馨提示:数字商品不支持退换货,不提供源文件,不支持导出打印

为你推荐

  • 读书简介
  • 目录
  • 累计评论(0条)
  • 读书简介
  • 目录
  • 累计评论(0条)
Over 60 recipes for writing client * in ASP.NET 4.6 applications using jQueryAbout This BookThis is a step-by-step guide to solve common problems in ASP.NET applicationsEasy-to-follow recipes to write client *s effortlessly and quicklyA hands-on approach that will show you how to interface jQuery with ASP.NET websites and MVCWho This Book Is ForThis book is for ASP.NET developers who want to use jQuery to write client *s for cross-browser compatibility. The book assumes no prior knowledge of ASP.NET or jQuery, and every recipe is self-contained and explained in an easy-to-follow manner. Familiarity with Visual Studio and MS SQL Server is preferred, but not compulsory.What You Will LearnDownload and include jQuery in ASP.NET websites and MVCUse jQuery selectors with ASP.NET server controlsGet to know about event handling and DOM traversalDeploy jQuery for visual effects and animationsDevelop AJAX-enabled ASP.NET applicationsCreate your own pluginsSolve common problems using less code and cut down your development timeIn DetailjQuery is a lightweight JavaScript library that has changed the landscape of client *ing in web applications. Developed by John Resig in 2006, it has taken the web by storm because of its cross-browser compatibility and the ability to get more done with less code. It has gained popularity with ASP.NET developers and is now distributed with Visual Studio and the NuGet package manager.ASP.NET jQuery Cookbook explores the wide range of utilities that the jQuery library provides. It teaches you the nitty-gritty of plugging in these features in ASP.NET web applications. It covers every aspect of interfacing the library, right from downloading and including jQuery on web pages to selecting controls, handling events, and creating animations. This book also walks you through DOM traversal and manipulation in ASP.NET and then through visual effects and graphics in ASP.NET sites. It explores advanced features such as posting AJAX requests and writing plugins. It will provide you with all the information you need to use this library confidently with ASP.NET.Style and approachThis book takes a hands-on, pragmatic approach to solving common problems in ASP.NET applications using jQuery. Every recipe has detailed steps with screen captures and code snippets. The necessary theoretical concepts are introduced as and when needed.
目录展开

ASP.NET jQuery Cookbook Second Edition

Table of Contents

ASP.NET jQuery Cookbook Second Edition

Credits

About the Author

About the Reviewer

www.PacktPub.com

eBooks, discount offers, and more

Preface

What this book covers

What you need for this book

Who this book is for

Sections

Getting ready

How to do it…

How it works…

There's more…

See also

Conventions

Reader feedback

Customer support

Downloading the example code

Downloading the color images of this book

Errata

Piracy

Questions

1. Getting Started with jQuery in ASP.NET

Introduction

Downloading jQuery from jQuery.com

Getting ready

How to do it…

See also…

Understanding CDN for jQuery

How to do it…

Using CDNs for new releases

How it works…

See also

Using NuGet Package Manager to download jQuery

Getting ready

How to do it…

How it works…

See also

Adding jQuery to an empty ASP.NET web project using a script block

Getting ready

How to do it…

See also

Adding jQuery to an empty ASP.NET web project using ScriptManager control

Getting ready

How to do it…

How it works…

See also

Adding jQuery to an ASP.NET Master Page

Getting ready

How to do it…

How it works…

See also

Adding jQuery programmatically to a web form

Getting ready

How to do it…

How it works…

See also

Understanding jQuery reference in the default web application template

How to do it...

How it works…

See also

Hello World in a web project using jQuery

Getting ready

How to do it…

How it works…

See also

Bundling jQuery in ASP.NET MVC

Getting ready

How to do it…

How it works…

See also

Using CDN to load jQuery in MVC

Getting ready

How to do it…

How it works…

See also

Hello World in ASP.NET MVC using jQuery

Getting ready

How to do it…

How it works…

See also

Debugging jQuery code in Visual Studio

Getting ready

How to do it…

See also

2. Using jQuery Selectors with ASP.NET Controls

Introduction

Selecting a control using ID and displaying its value

Getting ready

How to do it…

How it works…

See also

Selecting a control using the CSS class

Getting ready

How to do it…

How it works…

See also

Selecting a control using HTML tag

Getting ready

How to do it…

How it works…

See also

Selecting a control by its attribute

Getting ready

How to do it…

How it works…

See also

Selecting an element by its position in the DOM

Getting ready

How to do it…

How it works…

See also

Enabling/disabling controls on a web form

Getting ready

How to do it…

How it works…

See also

Using selectors in MVC applications

Getting ready

How to do it…

How it works…

See also

3. Event Handling Using jQuery

Introduction

jQuery event binders

Responding to mouse events

Getting ready

How to do it…

How it works…

See also

Responding to keyboard events

Getting ready

How to do it…

How it works…

See also

Responding to form events

Getting ready

How to do it…

How it works…

See also

Using event delegation to attach events to future controls

Getting ready

How to do it…

How it works…

See also

Running an event only once

Getting ready

How to do it…

How it works…

See also

Triggering an event programmatically

Getting ready

How to do it…

How it works…

See also

Passing data with events and using event namespacing

Getting ready

How to do it…

How it works…

See also

Detaching events

Getting ready

How to do it…

How it works…

See also

4. DOM Traversal and Manipulation in ASP.NET

Introduction

Adding/removing DOM elements

Getting ready

How to do it…

How it works…

See also

Accessing parent and child controls

Getting ready

How to do it…

How it works…

See also

Accessing sibling controls

Getting ready

How to do it…

How it works…

There's more…

See also

Refining selection using a filter

Getting ready

How to do it…

How it works…

There's more…

See also

Adding items to controls at runtime

Getting ready

How to do it…

How it works…

See also

5. Visual Effects in ASP.NET Sites

Introduction

Animating the Menu control

Getting ready

How to do it…

How it works…

See also

Animating a Label control to create a digital clock

Getting ready

How to do it…

How it works…

See also

Animating the alt text of the AdRotator control

Getting ready

How to do it…

How it works…

There's more…

See also

Animating images in the TreeView control

Getting ready

How to do it…

How it works…

There's more…

See also

Creating scrolling text in a Panel control

Getting ready

How to do it…

How it works…

See also

Creating a vertical accordion menu using Panel controls

Getting ready

How to do it…

How it works…

See also

Showing/hiding the GridView control with the explode effect

Getting ready

How to do it…

How it works…

See also

6. Working with Graphics in ASP.NET Sites

Introduction

Creating a spotlight effect on images

Getting ready

How to do it…

How it works…

See also

Zooming images on mouseover

Getting ready

How to do it…

How it works…

See also

Creating an image scroller

Getting ready

How to do it…

How it works…

See also

Building a photo gallery using z-index property

Getting ready

How to do it…

How it works…

See also

Building a photo gallery using ImageMap control

Getting ready

How to do it…

How it works…

See also

Using images to create effects in the Menu control

Getting ready

How to do it…

How it works…

See also

Creating a 5 star rating control

Getting ready

How to do it…

How it works…

There's more…

See also

Previewing image uploads in MVC

Getting ready

How to do it…

How it works…

See also

7. Ajax Using jQuery

Introduction

Setting up Ajax with ASP.NET using jQuery

Getting ready

How to do it…

How it works…

There's more…

See also

Consuming page methods

Getting ready

How to do it…

How it works…

See also

Consuming Web services

Getting ready

How to do it…

How it works…

See also

Consuming WCF services

Getting ready

How to do it…

How it works…

See also

Retrieving data from a Web API

Getting ready

How to do it…

How it works…

See also

Making Ajax calls to a controller action

Getting ready

How to do it…

How it works…

See also

Making Ajax calls to a HTTP handler

Getting ready

How to do it…

How it works…

See also

8. Creating and Using jQuery Plugins

Introduction

Creating and using a simple plugin

Getting ready

How to do it…

How it works…

See also

Using the $ alias in the plugin

Getting ready

How to do it…

How it works…

There's more

See also

Calling methods on DOM elements

Getting ready

How to do it…

How it works…

There's more…

See also

Providing default values

Getting ready

How to do it…

How it works…

There's more…

See also

Providing method chaining

Getting ready

How to do it…

How it works…

See also

Adding actions to plugins

Getting ready

How to do it…

How it works…

See also

Using the form validation plugin

Getting ready

How to do it…

How it works…

There's more…

See also

Downloading plugins using the NPM

Getting ready

How to do it…

How it works…

See also

Index

累计评论(0条) 0个书友正在讨论这本书 发表评论

发表评论

发表评论,分享你的想法吧!

买过这本书的人还买过

读了这本书的人还在读

回顶部