Web-Mart.com
Search Advanced SearchView Cart   Checkout   
 Location:  Home » Books » Programming Languages » ASP.NET AJAX in Action  
Recommended Sites
Categories
Clothes
Cars
Baby
Beauty
Books
Computers
DVD
Electronics
Gourmet Food
Grocery
Health and Personal Care
Home and Garden
Industrial and Science
Jewelry
Kitchen
Magazines
Music
Musical Instruments
Office Products
Outdoor Living
Pet Supplies
Photo and Camera
Software
Sporting Goods
Tools and Hardware
Toys
Unbox
VHS
PC and Video Games
Phones
Related Categories
• Programming Languages
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• General AAS
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• General AAS
New & Used Textbooks
Custom Stores
Specialty Stores
Books
• General AAS
Qualifying Textbooks
Custom Stores
Specialty Stores
Books
• Ajax
Languages & Tools
Programming
Computers & Internet
Subjects
• General
Languages & Tools
Programming
Computers & Internet
Subjects
• General AAS
Languages & Tools
Programming
Computers & Internet
Subjects
• General
Programming
Computers & Internet
Subjects
Books
• General AAS
Programming
Computers & Internet
Subjects
Books
• General
Software
Computers & Internet
Subjects
Books
• General AAS
Software
Computers & Internet
Subjects
Books
• ASP
Programming
Web Development
Computers & Internet
Subjects
• General
Programming
Web Development
Computers & Internet
Subjects
• General AAS
Programming
Web Development
Computers & Internet
Subjects
• Web Services
Web Development
Computers & Internet
Subjects
Books
• General AAS
Web Development
Computers & Internet
Subjects
Books
• General
Computers & Internet
Subjects
Books
• General AAS
Computers & Internet
Subjects
Books
• Illustrated
Edition (format)
Refinements
Books
• Paperback
Binding (binding)
Refinements
Books
• Printed Books
Format (feature_browse-bin)
Refinements
Books
Subcategories
Mass Market
Trade

ASP.NET AJAX in Action

ASP.NET AJAX in Action
Authors: Alessandro Gallo, David Barkol, Rama Vavilala
Creators: Scott Guthrie, Bertrand Le Roy
Publisher: Manning Publications
Category: Book

List Price: $44.99
Buy New: $14.93
You Save: $30.06 (67%)

Qty 11 In Stock


New (40) Used (9) from $14.93

Avg. Customer Rating: 4.5 out of 5 stars 21 reviews
Sales Rank: 22294

Format: Illustrated
Media: Paperback
Number Of Items: 1
Pages: 600
Shipping Weight (lbs): 2.2
Dimensions (in): 9.2 x 7.4 x 1

ISBN: 1933988142
Dewey Decimal Number: 005
EAN: 9781933988146

Publication Date: August 24, 2007
Availability: Usually ships in 1-2 business days
Condition: New Publisher's Overstock! May have a small remainder mark.All orders shipped within 1 business day! Delivery confirmation emails including tracking numbers provided on all domestic orders.

Similar Items:

  • LINQ in Action
  • Professional ASP.NET 3.5: In C# and VB (Programmer to Programmer)
  • Professional ASP.NET 2.0 AJAX (Programmer to Programmer)
  • Pro LINQ: Language Integrated Query in C# 2008 (Windows.Net)
  • Pro C# 2008 and the .NET 3.5 Platform, Fourth Edition (Windows.Net)

Editorial Reviews:

Product Description
Ajax has revolutionized the way users interact with web pages today. Gone are frustrating page refreshes, lost scroll positions and intermittent interaction with a web site. Instead, we have a new generation of fast, rich, and more intuitive web applications. The ASP.NET AJAX framework puts the power of Ajax into the hands of web developers. ASP.NET AJAX, formerly called Atlas, is a new free framework from Microsoft designed to easily add Ajax features to ASP.NET applications. With this technology, ASP.NET developers can easily build more interactive and highly-personalized web applications that work across all most popular browsers.

ASP.NET AJAX in Action is a fast-paced, example-rich tutorial designed for ASP.NET web developers and written by ASP.NET AJAX experts Alessandro "Garbin" Gallo, David Barkol, and Rama Krishna Vavilala. This book introduces you to Ajax applications and to the ASP.NET AJAX technology. Beginners will appreciate the clear explanations of key ideas and terminology. Intermediate and advanced ASP.NET developers will find a no-nonsense learning source and well-organized reference.

ASP.NET AJAX in Action offers a rich set of examples and meticulous explanations. The extensive code samples are accompanied by accurate and rigorous explanations of the concepts behind development with ASP.NET AJAX. In this book, you will discover how to use

  • Microsoft Ajax Library
  • Partial rendering with UpdatePanels
  • Advanced client and server techniques
  • Ajax Control Toolkit

    If you are a web developer looking to bring your web pages to life and to enhance the user experience, this book is for you.

    ASP.NET AJAX in Action will give you with the knowledge and tools you need to more easily craft the next generation of Ajax applications. With the help of the Microsoft ASP.NET AJAX framework, Ajax development has never been easier and more instinctive for both client-script developers and ASP.NET developers alike.


  • Customer Reviews:   Read 16 more reviews...

    1 out of 5 stars Who should be allowed to review?   July 2, 2008
     1 out of 12 found this review helpful

    I wonder why people who did not buy the book but are allowed to review the book. This opens the door for many dishonest reviews.


    5 out of 5 stars Thorough and intelligent   June 3, 2008
     0 out of 2 found this review helpful

    I really enjoyed this book. Not only does it explain things thoroughly but the author also gives very intelligent, practical examples to help flesh out the theory. It's really good.


    2 out of 5 stars Frustrating Examples   May 27, 2008
     3 out of 12 found this review helpful

    WARNING: Examples are in C#
    I purchased this book due to the abundance of positive reviews. Unfortunately, the author/publisher fails to include in their description that the examples are based in C#. I was looking for VB. (Note to ALL publishers of technical books: Be VERY SPECIFIC in your Product Description as to what language your examples are based in. If you don't, then you are just pushing paper for the purpose of making a sale....) While I have some experience in C#, converting the examples to VB became a nightmare! And, even when I did try running the examples in their native C#, several failed.

    During the first chapter the author provides some quick and dirty examples of Ajax as implemented by Microsoft. In doing so, he gives you the code in well explained fragments, but, leaves out some key points. Mainly, the fact that the JavaScript (your code) to be used with MS/Ajax MUST come AFTER the asp:ScriptManager declaration. Which means that you cannot include your .js code in the "header" section of a web page (as many experienced JavaScript programmers would do...). When MS compiles a page, it adds it's own .js code AFTER it encounters the asp:ScriptManager tag. Therefore, any .js code you add, MUST come AFTER the asp:ScriptManage tag. This is a CRUCIAL point the author left out. If the author had mentioned this, I wouldn't have wasted an hour trying to figure out why his example kept blowing up on me. There are a number of examples that required you to add or include something that wasn't mentioned. Generally trivial things, but annoying to troubleshoot none the less.

    While the depth and coverage of the material is very good, giving plenty of under-the-hood information about AJAX and Microsoft's implementation of such, this is almost nullified by the fact that the code examples are continually presented out of order. A (very annoying) example of this is in chapter 5 where the author attempts to explain how to make cross domain calls to the Yahoo mapping API. The author provides the code to create a webservice (GeocodeService) that includes a reference to a class (Location) that isn't provided until later, which has a reference to another class (YahooProvider) that isn't explained until after that...(lather, frustrate, repeat, or should it be rinse, repeat, lather?) Had the examples been presented from inside-out it would have been easier to code and follow in a step-by-step manner. Instead, you are constantly required to read ahead, then code from back to front. Annoying to say the least.

    Had the examples been better organized, and more explicit on including that button, the onclick event, the assembly reference, etc., it would have been a four or five star book. Instead, the frustration factor made the attempt to learn-by-example impractical.



    5 out of 5 stars MUST GET - If you want to get under the covers   May 25, 2008
     1 out of 3 found this review helpful

    Ok for me its a must have book.
    Why because I want to know all about what the micrsoft javascipt injection is actually doing, how I debug applications with it, how I make it leaner (versa using CSSQuery,JQuery and MooTools), how I wire up events and become articulate with this tecnology. You can use the MS Ajax framework on its own in say PHP.
    So this book is really all about the client side of MS Ajax. If you are familiar with javascript libs like prototype.js you can absorbe this book easy. If you are a UI/Frontend developer then this is a must have.
    If you are a PHP developer then why not use it to pick up a robust framework.
    If you are a C# UI developer this will allow you to go beyond stuff that all the other can only drag and drop from the toolbar.
    Worth while looking at writing control extenders in 3.5 as this would be the place to put the results of your ajax efforts (write one - use many).



    5 out of 5 stars Extraordinary Book on ASP.NET AJAX   May 14, 2008
     0 out of 2 found this review helpful

    Like many people who develop ASP.NET applications for a living, I was extremely interested in learning about ASP.NET AJAX. This is the only book I bought on the subject, and it has been extraordinary. I can't recommend it highly enough. Read this book and you'll be an expert.

    Qty 11 In Stock


    Discount Shopping Online by Web-Mart.com