Essential ASP.NET with Examples in Visual Basic .NET (Microsoft .NET Development Series)
Home    View Cart    Contact Us

Search Books

Current Category
Books
   Computers & Internet
      Web Development
         Internet Commerce

All Categories


Essential ASP.NET with Examples in Visual Basic .NET (Microsoft .NET Development Series)


Shipping is just $2.95 for the first book and $1.00 for each additional book!  (For shipments in the US only, with media mail and paypal.)

All the books we sell are NEW, never read.  We may list a book as used if we feel it is not in gift condition due to minor wear on the cover from being on a retail store shelf.  We purchase all our books directly from the publisher. 

Essential ASP.NET with Examples in Visual Basic .NET (Microsoft .NET Development Series)
(Larger Image)

Essential ASP.NET with Examples in Visual Basic .NET (Microsoft .NET Development Series)

by Fritz Onion
Product Group: Book
Publisher: Addison-Wesley Professional (2003-02-21)
ISBN: 0201760398
EAN: 9780201760392
UPC: 785342760392
Dewey Decimal #: 005.2768
Paperback: 432 pages
SKU: 110508000126
Condition: New
Comments: 0201760398 New, never read, may have minor wear on cover.


Editorial Reviews


Product Description
This book will provide the definitive resource for ASP.NET developers working in Visual Basic .NET, not just to the features of ASP.NET but also how to use them best. Fritz Onion looks at working examples of how Web applications are built today, and then looks at what ASP.NET offers to simplify constructing Web applications of this type. In addition to explaining how to use ASP.NET and examining why it is built the way it is, Onion also explores implementation tools not covered in any other books. He helps the reader acquire a broader understanding of the technology and how it fits in with other tools. From his experience teaching ASP.NET to working developers, Onion knows what information they need, what questions they have, and how to organize and present the material in the best way possible. As Justin Burtch, a Software Engineer at Integrated Data Systems expressed it, "This book does not try to be everything to everyone. As a result, it is able to provide both breadth and depth on the subject. Essential ASP.NET is positioned to become the seminal book on the most important advancement to web development in years."


Customer Reviews


Book not delivered
Rating (1)
Date: 2007-09-21

0 out of 1 customers found this reveiw helpful


A couple of weeks back I ordered this book based on customer reviews and got a refund without any clear reason. When I called them they just said "We cannot find the book you ordered". I did not understand why this book is still there when they "can't find the book"!!!Essential ASP.NET with Examples in Visual Basic .NET


Good information, bad writing
Rating (2)
Date: 2004-12-20

4 out of 7 customers found this reveiw helpful


This book reads as if the author was writing personal notes to himself. Right off the bat, the text had a very esoteric and exclusive feel to it. I suppose it could be used as a reference, but for someone trying to expand their knowledge of the language, and especially for people trying to learn ASP.NET for the first time, I highly discourage this as your first purchase.


I found the guerrilla
Rating (5)
Date: 2004-10-13

5 out of 5 customers found this reveiw helpful


If you have experience with object-oriented software development, all you need do is read the Preface of this book and you know it's what you are looking for. The book is designed for the experienced Web developer. It's perfectly positioned for those who've been working up the asp.net learning curve for a year or so. If you're not looking for "here's a class, here's a variable, this is what they are for, etc." the book is for you. Clear simple examples walk you through the architecture with lots of astute reinforcing visual aids. Great explanations of event handling, data binding and state management - the nuts and bolts type stuff. I particularly like the insightful two book printing approach one for C# and one VB.NET - no filler here! If you're a bit new or fuzzy with asp.net prime yourself with a beginning type book first or get a beginning type book for reference while reading this one because it is not a beginners book. But don't be shy. The writing style is respectful of learning. I regard this as one of the better technical books. The author is a trainer for DevelopMentor - if you've ever taken one of their courses you know what I mean - it's defiantly a guerrilla of a book!


Precise and Informative
Rating (5)
Date: 2003-09-10

8 out of 8 customers found this reveiw helpful


I have about 5 books (mostly ebook format) on ASP.Net from the step by step to advanced and Fritz's book is an eye opener. Most of the ASP.NET books fail to mention why some quirks/details with ASP.Net the way they are. EAN is like a pointer and half way through the book, I had so many 'aha' moments that I was left wondering WHO IS THIS guy? Don't expect explanations about variables and such (go refer ASP.Net Web Developers Gude pub. by Syngress) and thankfully so. You will have a better understanding of ASP.Net by the end of the book than syntax which you would be thankful for when you start writing ASP.Net applications in real world. I have yet to finish the book but I couldn't wait to put in my 2 cents about this book. A definite must on your bookshelf (www.safaribooksonline.com)!!!


Essential ASP.NET is an EXCELLENT BOOK!!
Rating (5)
Date: 2003-09-05

32 out of 33 customers found this reveiw helpful


There are so many books out about ASP.NET it can be a very difficult task to choose one. To me there seems to be two types of books. One is the example intensive (at times over laden) book. The other is the "how it works" type of book. The market seems to be flooded with example intensive books, but appears light in the "how it works" type. This book is a fantastic "how it works" book. It has good examples but is not drowning in them. The book's strength is its explanations of ASP.NET core topics, and the little tips and tricks that readers will pick up along the way.

This book is well written and flows nicely. Without a doubt it is an excellent book for beginners and intermediate levels, but I would bet that even advanced users would pick up tips and tricks from the book.

Summary

Chapter 1: Architecture
This chapter explains the basic new architecture behind ASP.NET.
Compilation vs. Interpretation, Code-behind, new Page architecture, Shadow Copying, Directives, and new Intrinsic Objects (HttpRequest, HttpResponse, etc) are a few of the topics covered.

Chapter 2: Web Forms
This chapter is all about Web Forms. ViewState, HtmlControls,
WebControls, and Events are some of the items discussed. One section I liked the best was the "Day in the life of a page". It explained the step by step events that occur during a page's lifetime in a very clear and concise manner.

Chapter 3: Configuration
This is an excellent chapter that discusses the new XML based
configuration in ASP.NET. Web.Config, Machine.Config, and
configuration hierarchy are examined. processModel and other elements are also discussed.

Chapter 4: HTTP Pipeline
This chapter goes over the HTTP Pipeline, and all the actions that take place each time a requests comes in. It goes into great coverage of how that request is routed through the architecture. It also goes over Context, Applications, Custom Handlers, and a few other related topics. This is a great chapter.

Chapter 5: Diagnostics and Error Handling
This chapter shows us how to get out of the classic response.write method of debugging ASP apps by examining the new diagnostic and error handling capabilities of ASP.NET. Page Tracing, Application-level Tracing, Error Handling, and Unhandled Exceptions are all discussed.

Chapter 6: Validation
This is a chapter that explains form validation (client and server-side), validation control architecture, and the validation controls.

Chapter 7: Data Binding
This chapter starts by explaining the fundamentals of binding data to controls, and then goes into IDataReader Binding, DataSet Binding, and picking when to use a DataSet vs DataReader. The chapter ends by discussing templated controls (DataGrid, Repeater, and DataList).

Chapter 8: Custom Controls
This is the largest chapter of the book (69 pages). This chapter
covers custom control fundamentals, state management consideration when designing custom controls, composite controls, and user controls. Designer integration with VS.Net as well as validation and data binding within custom controls is also covered. This is an excellent chapter.

Chapter 9: Caching
This chapter discusses the new caching opportunities that exist in ASP.NET. Output caching and how it works is discussed. The
VaryByParam attribute is also examined, as well as page fragment
caching. The chapter also covers data caching, and consideration and guidelines for using it.

Chapter 10: State Management
Application state, session state, cookie state, and view state are all covered in this chapter. I think this is a great chapter because it discusses the pros and cons of each type of state, which will help developers be able to determine which type of state management would be best for their specific situation. Good discussion, with great insights.

Chapter 11: Security
A short chapter on security ends the book. Server and client

authentication start the chapter out, and then we go into ASP.NET security. The authentication and authentication elements in the web.config file are both discussed, as is role-based authentication. System identity is the last topic discussed.

I give this book a 9 out of 10. It would be a great addition to any developer's library. There is also another version of the book with examples in C# for you semicolon worshipers. Well done!

Retail Price: $49.99
Our Price:$13.69
That's 73% Off!