Showing posts with label asp. Show all posts
Showing posts with label asp. Show all posts

Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer) Review

Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer) ReviewI bought this book to get a better handle on the advantages offered by LINQ and the Entity Framework to build Enterprise web applications. Although the author appears to have expertise in the subject matter, the style in which it is communicated was very difficult to follow. I would not rate this as one of the better technical books I have read. There is a lot of trivia throughout the book that really distracts from the content. Even the style and organization of the book does not allow the reader to read at a fast pace, since it does not clearly enough distinguish critical and superfluous content.Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer) OverviewLanguage Integrated Query (LINQ), as well as the C# 3.0 and VB 9.0 language extensions to support it, is the most import single new feature of Visual Studio 2008 and the .NET Framework 3.x. LINQ is Microsoft's first attempt to define a universal query language for a diverse set of in-memory collections of generic objects, entities persisted in relational database tables, and element and attributes of XML documents or fragments, as well as a wide variety of other data types, such as RSS and Atom syndication feeds. Microsoft invested millions of dollars in Anders Hejlsberg and his C# design and development groups to add new features to C# 3.0—such as lambda expressions, anonymous types, and extension methods—specifically to support LINQ Standard Query Operators (SQOs) and query expressions as a part of the language itself.
Corresponding additions to VB 9.0 followed the C# team's lead, but VB's implementation of LINQ to XML offers a remarkable new addition to the language: XML literals. VB's LINQ to XML implementation includes XML literals, which treat well-formed XML documents or fragments as part of the VB language, rather than requiring translation of element and attribute names and values from strings to XML DOM nodes and values.
This book concentrates on hands-on development of practical Windows and Web applications that demonstrate C# and VB programming techniques to bring you up to speed on LINQ technologies. The first half of the book covers LINQ Standard Query Operators (SQOs) and the concrete implementations of LINQ for querying collections that implement generic IEnumerable, IQueryable, or both interfaces. The second half is devoted to the ADO.NET Entity Framework, Entity Data Model, Entity SQL (eSQL) and LINQ to Entities. Most code examples emulate real-world data sources, such as the Northwind sample database running on SQL Server 2005 or 2008 Express Edition, and collections derived from its tables. Code examples are C# and VB Windows form or Web site/application projects not, except in the first chapter, simple command-line projects. You can't gain a feel for the behavior or performance of LINQ queries with "Hello World" projects that process arrays of a few integers or a few first and last names.
This book is intended for experienced .NET developers using C# or VB who want to gain the maximum advantage from the query-processing capabilities of LINQ implementations in Visual Studio 2008—LINQ to Objects, LINQ to SQL, LINQ to DataSets, and LINQ to XML—as well as the object/relational mapping (O/RM) features of VS 2008 SP1's Entity Framework/Entity Data Model and LINQ to Entities and the increasing number of open-source LINQ implementations by third-party developers.
Basic familiarity with generics and other language features introduced by .NET 2.0, the Visual Studio integrated development environment (IDE), and relational database management systems (RDBMSs), especially Microsoft SQL Server 200x, is assumed. Experience with SQL Server's Transact-SQL (T-SQL) query language and stored procedures will be helpful but is not required. Proficiency with VS 2005, .NET 2.0, C# 2.0, or VB 8.0 will aid your initial understanding of the book's C# 3.0 or VB 9.0 code samples but isn't a prerequisite.
Microsoft's .NET code samples are primarily written in C#. All code samples in this book's chapters and sample projects have C# and VB versions unless they're written in T-SQL or JavaScript.
Professional ADO.NET 3.5: LINQ and the Entity Framework concentrates on programming the System.Linq and System.Linq.Expressions namespaces for LINQ to Objects, System.Data.Linq for LINQ to SQL, System.Data.Linq for LINQ to DataSet, System.Xml.Linq for LINQ to XML, and System.Data.Entity and System.Web.Entity for EF's Entity SQL.
"Taking a New Approach to Data Access in ADO.NET 3.5," uses simple C# and VB code examples to demonstrate LINQ to Objects queries against in-memory objects and databinding with LINQ-populated generic List collections, object/relational mapping (O/RM) with LINQ to SQL, joining DataTables with LINQ to DataSets, creating EntitySets with LINQ to Entities, querying and manipulating XML InfoSets with LINQ to XML, and performing queries against strongly typed XML documents with LINQ to XSD.
"Understanding LINQ Architecture and Implementation," begins with the namespaces and C# and VB language extensions to support LINQ, LINQ Standard Query Operators (SQOs), expression trees and compiled queries, and a preview of domain-specific implementations. C# and VB sample projects demonstrate object, array, and collection initializers, extension methods, anonymous types, predicates, lambda expressions, and simple query expressions.
"Executing LINQ Query Expressions with LINQ to Objects," classifies the 50 SQOs into operator groups: Restriction, Projection, Partitioning, Join, Concatenation, Ordering, Grouping, Set, Conversion, and Equality, and then lists their keywords in C# and VB. VS 2008 SP1 includes C# and VB versions of the LINQ Project Sample Query Explorer, but the two Explorers don't use real-world collections as data sources. This describes a LINQ in-memory object generator (LIMOG) utility program that writes C# 3.0 or VB 9.0 class declarations for representative business objects that are more complex than those used by the LINQ Project Sample Query Explorers. Sample C# and VB queries with these business objects as data sources are more expressive than those using a arrays of a few integers or last names.
"Working with Advanced Query Operators and Expressions," introduces LINQ queries against object graphs with entities that have related (associated) entities. This begins with examples of aggregate operators, explains use of the Let temporary local variable operator, shows you how to use Group By with aggregate queries, conduct the equivalent of left outer joins, and take advantage of the Contains() SQO to emulate SQL's IN() function. You learn how to compile queries for improved performance, and create mock object classes for testing without the overhead of queries against relational persistence stores.
"Using LINQ to SQL and the LinqDataSource," introduces LINQ to SQL as Microsoft's first O/RM tool to reach released products status and shows you how to autogenerate class files for entity types with the graphical O/R Designer or command-line SqlMetal.exe. This also explains how to edit *.dbml mapping files in the Designer or XML Editor, instantiate DataContext objects, and use LINQ to SQL as a Data Access Layer (DAL) with T-SQL queries or stored procedures. Closes with a tutorial for using the ASP.NET LinqDataSource control with Web sites or applications.
"Querying DataTables with LINQ to DataSets," begins with a comparison of DataSet and DataContext objects and features, followed by a description of the DataSetExtensions. Next comes querying untyped and typed DataSets, creating lookup lists, and generating LinqDataViews for databinding with the AsDataView() method. This ends with a tutorial that shows you how to copy LINQ query results to DataTables.
"Manipulating Documents with LINQ to XML," describes one of LINQ most powerful capabilities: managing XML Infosets. This demonstrates that LINQ to XML has query and navigation capabilities that equal or surpasses XQuery 1.0 and XPath 2.0. It also shows LINQ to XML document transformation can replace XQuery and XSLT 1.0+ in the majority of common use cases. You learn how to use VB 9.0's XML literals to constructs XML documents, use GroupJoin() to produce hierarchical documents, and work with XML namespaces in C# and VB.
"Exploring Third-Party and Emerging LINQ Implementations," describes Microsoft's Parallel LINQ (also called PLINQ) for taking advantage of multiple CPU cores in LINQ to Objects queries, LINQ to REST for translating LINQ queries into Representational State Transfer URLs that define requests to a Web service with the HTML GET, POST, PUT, and DELETE methods, and Bart De Smet's LINQ to Active Directory and LINQ to SharePoint third-party implementations.
"Raising the Level of Data Abstraction with the Entity Data Model," starts with a guided tour of the development of EDM and EF as an O/RM tool and heir apparent to ADO.NET DataSets, provides a brief description of the entity-relationship (E-R) data model and diagrams, and then delivers a detailed analysis of EF architecture. Next comes an introduction to the Entity SQL (eSQL) language, eSQL queries, client views, and Object Services, including the ObjectContext, MetadataWorkspace, and ObjectStateManager. Later chapters describe eSQL and these objects in greater detail. Two C# and VB sample projects expand on the eSQL query and Object Services sample code.
"Defining Conceptual, Mapping, and Storage Schema Layers," provides detailed insight into the structure of the *.edmx file that generates the *.ssdl (storage schema data language), *.msl (mapping schema language), and *.csdl files at runtime. You learn how to edit the *.edmx file manually to accommodate modifications that the graphic EDM Designer can't handle. You learn how to implement the Table-per-Hierarchy (TPH) inheritance model and traverse the MetadataWorkspace to obtain property values. Four C# and VB sample projects demonstrate mapping, substituting stored procedures for queries, and TPH inheritance.
"Introducing Entity SQL," examines EF's new eSQL dialect that adds keywords to address the differences between querying entities and relational tables. You learn to use Zlatko Michaelov's eBlast utility to write and analyze eSQL queries, then dig into differences between eSQL and T-SQL SELECT queries. (eSQL v1 doesn't support INSERT, UPDATE, DELETE and ...

Want to learn more information about Professional ADO.NET 3.5 with LINQ and the Entity Framework (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Pro ASP.NET 3.5 in C# 2008 (Windows.Net) Review

Pro ASP.NET 3.5 in C# 2008 (Windows.Net)
Average Reviews:

(More customer reviews)
Are you looking to buy Pro ASP.NET 3.5 in C# 2008 (Windows.Net)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Pro ASP.NET 3.5 in C# 2008 (Windows.Net). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Pro ASP.NET 3.5 in C# 2008 (Windows.Net) ReviewPro ASP.net 3.5: This book is a must to have book for anyone who is starting/ switching their careers to developing web applications using asp.net technologies. The authors Matthew MacDonald and Mario Szpuszta, has done a very good job of covering all sections that are useful for beginners as well as middle level developers.
For example, if you are seeing Visual Studio for the first time in your life, they dedicated a whole chapter on how to use visual studio. The reason I brought up this point is they kept the beginners in mind and they didn't leave any assumptions that the reader already know how to use Visual Studio.
At the same time for those middle level developers who wants to dive into newly released hot technologies like Ajax, LINQ and Silverlight you won't be disappointed. They have dedicated individual chapters for each of those topics. As I have been developing asp.net application from last several years, I opened this book to see what I can read about Linq and Silverlight. I enjoyed those chapters as they give you an introduction and a good kick start. I am surprised that the authors also dedicated a whole chapter for website deployment (Chapter 18) where the architectures of IIS 5.0, 6.0 and then 7.0 is explained. That is awesome that they have discussed installation of IIS 7.0 and explained the architecture as well as the new Configuration model of IIS 7.0. Everything is explained with the help of screen shots.
Of course I took for granted for all those core concepts of asp.net like developing Http Handlers, Http Modules, Customer Server controls, Custom Membership and profile providers, Security. They are all covered and are very well explained in individual chapters.
Given the broadness of the subject, the authors done a great job of covering all areas in depth methodically that way you won't be lost.
I enjoyed this book so much that I would definitely recommend this book to any .Net Web Developer and this book is going to take some space on my desk.
Pro ASP.NET 3.5 in C# 2008 (Windows.Net) Overview
ASP.NET 3.5 isMicrosoft's revolutionary ASP.NET technology. It is the principal standard for creating dynamic web pages on the Windows platform. Pro ASP.NET 3.5 in C# 2008 raises the bar for high–quality, practical advice on learning and deploying Microsoft's dynamic web solution.

Seasoned .NET professionals Matthew MacDonald and Mario Szpuszta explain how you can get the most from this groundbreaking technology. They cover ASP.NET 3.5 as a whole, illustrating both the brand–new features and the functionality carried over from previous versions of ASP. This book will give you the knowledge you need to code real ASP.NET 3.5 applications in the best possible style.


Want to learn more information about Pro ASP.NET 3.5 in C# 2008 (Windows.Net)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Active Server Pages 3 Weekend Crash Course (with CD-ROM) Review

Active Server Pages 3 Weekend Crash Course (with CD-ROM)
Average Reviews:

(More customer reviews)
Are you looking to buy Active Server Pages 3 Weekend Crash Course (with CD-ROM)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Active Server Pages 3 Weekend Crash Course (with CD-ROM). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Active Server Pages 3 Weekend Crash Course (with CD-ROM) ReviewThis book will take you from zero to intermediate level in fewer pages than I've ever seen. Its objective is to be concise and easy to read and it achieves that. But expect to invest in a reference like ASP in a Nutshell if you want to go any further. (Most notable omission from the book is the File System Object.) As for whether one can absorb this book in one weekend: if you can program Web pages in another language, and you have a long attention span, that is not impossible, but most programmers will take one to two weeks. Crash courses like this are for those who are no strangers to programming. If you've never programmed before (HTML is not a programming language!), you are likely to find the pace of this book daunting.Active Server Pages 3 Weekend Crash Course (with CD-ROM) OverviewThe Weekend Crash Course series consists of 30 sessions over a period of three days. Each session is designed to take 30 minutes to complete, so the Crash Course is an intense 15-hour learning period beginning on Friday evening and ending on Sunday afternoon. Naturally, readers can adapt their learning to whatever schedule best suits their needs.
Active Server Pages 3 Weekend Crash Course is written to meet the needs of the reader who is new to ASP. However, through the use of carefully constructed roadmaps at the beginning of each session as well as pre- and post-assessment software on the CD-ROM, the book is also quite accessible to the reader who already has some knowledge of ASP.

Want to learn more information about Active Server Pages 3 Weekend Crash Course (with CD-ROM)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer) Review

Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer) ReviewIf you are looking for a gentle overview of the ASP.NET MVC Framework, this is a solid book. If you are looking for a "Pro" book, there are better books available.
Over a third of the book is the Nerddinner walkthrough which is an excellent introduction to the ASP.NET MVC Framework. There are plenty of pictures so you don't lose your way, and the step-by-step instructions really help the beginning ASP.NET MVC Developer better understand the code, how it works, and why it was coded as such. Nerddinner will always be that beginner example we talk about and I love having it in book form.
The rest of the book starts to systematically look at the various pieces of ASP.NET MVC - Routes, Controllers, Views, and Filters. You basically get a very nice overview of each with a deeper-dive now and then. As a beginner book, I think the deeper dives are nicely placed and fine for someone who wants to use the MVC Framework out-of-the-box. However, for those who want to become an expert, extend the framework, or create an opinionated MVC Framework, you will be disappointed that the book does not go deep enough.
There are some smaller chapters on AJAX, security, unit testing, Webforms vs. MVC, and using Webforms with MVC. Again, good beginner material that gets your feet wet for more advanced and challenging books. The chapters entitled, Webforms vs. MVC and Webforms with MVC, feel like Microsoft product positioning, but they are still useful in understanding their thoughts ( whether you agree or disagree ).
Lastly the book has some quotes and personal thoughts by various ASP.NET MVC team members sprinkled throughout. I personally love those little gems as it gives you insight here and there into the development process and the decisions that had to be made. Reminds me of the book, Framework Design Guidelines. It humanizes the book, making it fun.
In conclusion, I think Professional ASP.NET MVC 1.0 is a solid beginner book. I think it would have been better named "Beginning ASP.NET MVC 1.0," but I have been using the ASP.NET MVC Framework for a long time, too.Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer) OverviewThis book begins with you working along as Scott Guthrie builds a complete ASP.NET MVC reference application. He begins NerdDinner by using the File->New Project menu command within Visual Studio to create a new ASP.NET MVC Application. You'll then incrementally add functionality and features. Along the way you'll cover how to create a database, build a model layer with business rule validations, implement listing/details data browsing, provide CRUD (Create, Update, Delete) data form entry support, implement efficient data paging, reuse UI using master pages and partials, secure the application using authentication and authorization, use AJAX to deliver dynamic updates and interactive map support, and implement automated unit testing.
From there, the bulk of the rest of the book begins with the basic concepts around the model view controller pattern, including the little history and the state of the MVC on the web today. We'll then go into the ways that MVC is different from ASP.NET Web Forms. We'll explore the structure of a standard MVC application and see what you get out of the box. Next we dig deep into routing and see the role URLs play in your application. We'll deep dive into controllers and views and see what role the Ajax plays in your applications. The last third of the book focuses entirely on advanced techniques and extending the framework.
In some places, we assume that you're somewhat familiar with ASP.NET WebForms, at least peripherally. There are a lot of ASP.NET WebForms developers out there who are interested in ASP.NET MVC so there are a number of places in this book where we contrast the two technologies. Even if you're not already an ASP.NET developer, you might still find these sections interesting for context, as well as for your own edification as ASP.NET MVC may not be the web technology that you're looking for.
It's worth noting, that ASP.NET MVC is not a replacement for ASP.NET Web Forms (aka just "ASP.NET"). Many web developers have been giving a lot of attention to other web frameworks out there (Ruby on Rails, Django) which have embraced the MVC (Model-View-Controller) application pattern, and if you're one of those developers, or even if you're just curious, this book is for you.
MVC allows for (buzzword alert!) a "greater separation of concerns" between components in your application. The book goes into the ramifications of this, but if it had to be said it in a quick sentence: ASP.NET MVC is ASP.NET Unplugged. ASP.NET MVC is a tinkerer's framework that gives you very fine-grained control over your HTML and Javascript, as well as complete control over the programmatic flow of your application.

Want to learn more information about Professional ASP.NET MVC 1.0 (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer) Review

Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer) ReviewLet me get the bad out of the way first, so I can tell you why I think you should still consider buying this book.
1. Spends a bit of time on superfluous issues. For some of you, this might be a godsend, however, as development is often more than just coding these days.
2. Some fairly long code samples that fluff up the book without adding a huge amount. One illustration of CSS versus tables would be sufficient.
3. Not a lot of highlighting in code to point you to the points that have changed.
4. Some of the explanations are thin for those without a lot of experience in this particular topic.
Now that I got that out of the way, let's look at why this book should be a welcome addition to your shelf.
Reason 1 is it is the only book that focuses on this particular topic. Reason 2 is this topic is extremely important, although more often overlooked.
If you have an ugly, unusable personal site, it is not a big deal, as your mom will still visit. But, with business, it can be devastating. And, now, with accessibility lawsuits, it can be costly, as well.
Let's start from the beginning (a very good place to start, I hear).
The first few chapters are a bit of overview and express the importance of things like CSS, accessibility and good web design. None of these will make you an expert, but they will likely push those of you still in table design over to the dark side (CSS). The arguments for accessibility, including information about recent legal actions against websites, may be the kicker. Chapter 3 also focuses on using PhotoShop for designing a nice looking site. Some of the techniques will not apply to other image manipulation tools, but the basic ideas are useful for all.
Chapters 4 and 5 focus on CSS. In particular, chapter 4 talks about setting up a site that appears "tabled" in CSS and chapter 5 gives you a great overview, and some practical advise, about the CSS Friendly ASP.NET controls.
Chapter 6 talks about navigation and gives great practial advise on the web.sitemap file. This chapter was a godsend to me, as it finally gave me an epiphany on why roles were not working. This was actually a portion that fit #4 on my bad list, but sometimes seeing an example is enough to clue you in. :-)
Chapter 7 is focused on master pages. One of the biggest aids here will be the bits on design. The pages on passing information from master to child is also very useful.
Chapters 8 and 9 focus on themes. If you have a site that can be "skinned" different ways (by user or "site"), these chapters may well be worth the price of admission.
Finally, chapter 10. This is one of the best chapters in the book, as it brings all of what you have learned together. It shows how to use a single code base to work with a wide variety of browser targets, including mobile devices. And, unlike many books, it does it in a very practical, real world way.
There are also bonus appendices on Orcas (Visual Studio 2008) and Silverlight.
Summary: Overall, this is an average book. As the only book on the topic, however, it gets a slightly higher nod. As this is a topic I have tried to drill into people's heads (i.e., building a site is as much about user experience as making things work), I would like to see as many people pick up this book as possible. Someone might come out with a better one at some time, but learning this material is a wise thing.Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer) Overview

This book is for anyone who wants to learn about using .NET for web interface design. Beginner or hobbyist .NET developers can certainly get a good foundation of .NET web interface design by going through this book from cover to cover. However, more seasoned .NET professionals, especially if they tend to steer away from the GUI of their projects, can also pick up a thing or two by focusing on certain chapters that appeal to them. This book is meant to take a reader from the beginning of a project to the completion of the interface design. Along the way, concepts are illustrated to show how the different pieces play together. So, anyone who really wants to understand the concepts presented in this book will be able to do so by reading the entire thing. However, this book should also serve as a good reference after you have read it or, in some cases, in place of reading it.
All of the early chapters provide useful information and examples for any web developer. Many of the concepts presented after Chapter 4 are more specifically targeted at .NET developers. In the later chapters, the target audience is .NET developers or, at least, people who want to become .NET developers. In those chapters, you should probably have at least a basic understanding of the .NET Framework and some experience with Visual Studio 2005 (or possibly Visual Studio 2003). If you are completely new to .NET, you may find it useful to pick up a beginning ASP.NET 2.0 book before delving too deeply into those chapters. If you want to learn about .NET 2.0 web interface design, you are the intended audience.
It should be noted that all of the .NET code samples in this book are in C#. However, this shouldn't limit other developers, such as VB.NET developers, from understanding the concepts or being able to replicate the code in their own projects. The actual managed code examples are pretty limited and, when they are used, they should be fairly easy to port over to VB.NET.
This book covers the concepts serious developers need to begin designing cool and consistent web layouts. The early chapters focus on general web design standards that you need to grasp in order to move into the later chapters. Specifically, these concepts are:

Basic web design considerations (colors, fonts, images, accessibility, and so on) (Chapter 2)

Photoshop basics to get you started making your own graphics and color schemes (Chapter 3)

Cascading Style Sheets (CSS) and their use in web design layout (Chapter 4)

When you finish these chapters, you will have the basic shell for the project that you will continue to develop throughout the book. You will have the header graphic, color scheme, and CSS layout that you will begin to incorporate .NET-specific concepts to in the later chapters. This includes:

How to make .NET controls render accessible CSS code rather than their default: tables (Chapter 5)

Using the built-in controls of .NET to create easily maintainable and consistent site navigation (and how to make them render CSS divs instead of tables) (Chapter 6)

Creating your web site template with Master Pages (Chapter 7)

Creating themes and skins to style your .NET controls (Chapter 8)

Applying themes to your projects through various approaches, including base classing (Chapter 9)

The final "regular" chapter ends with you building an entirely new mobile device theme using all of the concepts learned in the previous chapters. In Chapter 10, you will start with modifying your graphic to better fit the resolution of your mobile devices. You will also learn how to modify your stylesheets and apply them programmatically to be used only for this theme. You will have a new Master Page and an entirely new theme. You will also see one way of switching themes based on your criteria (in this example, your criterion will be whether your client browser is a mobile device).
Beyond these chapters, you will get a "forward look" at some of the new technologies coming down the pipeline that affect these some of the material you learned in the preceding chapters. In Appendix A, you will get a glimpse at the upcoming release for Visual Studio, codenamed "Orcas." This will almost exclusively focus on the new CSS features because they are the most relevant to the other chapters of the book, and there are so many new features regarding CSS management in this release that they warrant their own chapter (nested Master Pages are also included, but CSS takes up most of the appendix).
Finally, with Appendix B, the Visual Studio Codename "Orcas" discussion is extended to include Microsoft Silverlight. You will learn how to create drawing object, incorporate images, animate your objects, and affect the rendered output through your managed code.
If you read this book from cover to cover, you should end up with a really solid understanding of the current technologies for .NET developers to create consistent and accessible web interfaces, as well as a feeling of excitement for the new stuff that should be coming soon to a computer near you.


Want to learn more information about Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

ASP.NET 3.5: A Beginner's Guide Review

ASP.NET 3.5: A Beginner's Guide
Average Reviews:

(More customer reviews)
Are you looking to buy ASP.NET 3.5: A Beginner's Guide? Here is the right place to find the great deals. we can offer discounts of up to 90% on ASP.NET 3.5: A Beginner's Guide. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

ASP.NET 3.5: A Beginner's Guide ReviewI was familiar with ASP (the OLD version - pre ".NET") before reading this book, and I found this an extremely fast, clear, and useful way of bridging the gap to the new language and programming framework. I was literally able to breeze through the book in just a few days. I suspect there might be a bit more ramp-up time involved for someone without a pre-existing computer programming background, but anyone who already knows their way around a web programming language should do very well with this material. I'm a very satisfied customer.ASP.NET 3.5: A Beginner's Guide Overview
Essential ASP.NET 3.5 Skills--Made Easy!

Learn how to create database-driven ASP.NET 3.5 websites using C# 3.0. ASP.NET 3.5: A Beginner's Guide shows you just what you need to know to build rich Internet applications quickly and easily. You'll find details on Web controls, CSS, event handlers, validation, SQL, ADO.NET, data binding, text files, and security. Coverage of the latest technologies, such as LINQ and Ajax, is also included. All examples use Visual Studio 2008 to ease you through the learning process, and all the source code is displayed. Start building dynamic ASP.NET 3.5 Web applications today with help from this fast-paced tutorial.

Designed for Easy Learning:

Key Skills & Concepts--Lists of specific skills covered in the chapter

Want to learn more information about ASP.NET 3.5: A Beginner's Guide?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics Review

Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics
Average Reviews:

(More customer reviews)
Are you looking to buy Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics? Here is the right place to find the great deals. we can offer discounts of up to 90% on Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics ReviewDino Esposito's book, "Programming Microsoft ASP.NET 2.0, Applications," is best described as a second volume of "Programming Microsoft ASP.NET 2.0, Core Reference" (also Microsoft Press, 2006). Opposing industry trends in computer books, Microsoft Press does not publish a table of contents for potential readers. Unless readers can inspect a copy at a bookstore, as I did, they will have difficulty deciding whether the book has content useful to them.
The two volumes combined are about equal in coverage to "Professional ASP.NET 2.0" from Bill Evjen and four others (Wrox, 2006). Esposito's strategic emphasis is not as significant for the "Applications" volume as it was for the "Core Reference" volume. The second volume mainly covers additional class libraries, such as those for "web parts," that are more likely to be of use in commercial portals and sales sites than in professional, Web-enabled applications. However, it is in this "Applications" volume rather than in the "Core References" volume that Esposito presents such critical topics as the ASP.NET 2.0 resource, role and image management services and the tree and menu controls.
In Esposito's two volumes combined one gets about 1,550 pages at twice the price of about 1,250 pages from Evjen, et al. Besides about 300 more pages, what one gets in return for the extra cost is coverage of some extra topics, such as resources, and generally clearer and more consistent descriptions of ASP.NET 2.0, free from gushing enthusiasms. Esposito also provides tables of properties and methods for the major classes. The items in these tables are the same as those in Microsoft's documentation, as furnished with the Visual Studio tools and available without charge on the Web, but often Esposito's explanations are both clearer and more detailed than Microsoft's opaque and perfunctory style.
Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics Overview
Discover how to:

Fine tune the ASP.NET runtime and control configuration settings
Build custom providers to replace or enhance native components
Develop rich applications with mobile controls, the site navigation API, GDI+, and other .NET Framework facilities
Use asynchronous pages, dynamic expressions, and page parse filters to enable complex application functions
Create custom Web Parts for personalized, portal-like Web sites
Define ASP.NET templates and work with the Repeater and DataList iterative controls
Develop and deploy user controls to partition and reuse common interface elements
Design custom data-bound controls

Get code samples on the Web


Want to learn more information about Programming Microsoft® ASP.NET 2.0 Applications: Advanced Topics?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Professional ASP.NET 2.0 Databases (Wrox Professional Guides) Review

Professional ASP.NET 2.0 Databases (Wrox Professional Guides)
Average Reviews:

(More customer reviews)
Are you looking to buy Professional ASP.NET 2.0 Databases (Wrox Professional Guides)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Professional ASP.NET 2.0 Databases (Wrox Professional Guides). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Professional ASP.NET 2.0 Databases (Wrox Professional Guides) ReviewThere are many ASP.NET 2.0 books on the market now, but they either come in two categories: The beginner who knows another server-side technology (ASP or PHP or even Java) or the advanced who wants to knows about web services or XML implementations or advanced web architecture. I have not found a book that is a solid intermediate ASP.NET 2.0 book on teaching the reader solid, real-life database applications, until now. This book fills in the gaps of so many other books out there on ASP.NET that it really should be the 2nd ASP.NET book you get. If you're already familiar with ASP.NET then this should be your first book. Because pretty much after you know how to use the basic controls and create some master pages and maybe some web parts you really know as much as the majority of the basic ASP.NET developer. This book by Thiru Thangarathinam really gives you a great understanding of "real-world" implementations of ASP.NET applications using any type of database.
Like any book, there always will be an introduction on the technology taught, so basically the first three chapters caters to refresh the reader on this technology. Chapter 1 introduces the ASP.NET 2.0 technology and terminology, the new data controls, how master pages work, and web parts framework. Chapter 2 is a very important chapter because it sets the stage for later chapters focusing on ADO.NET. You do not know how many books I have gone through trying to find a book with anything more than 20 pages on ADO.NET. It amazes me that no book (other than this one), really takes the time and explains this corroborating technology in detail when talking about ASP.NET. Yes, I have seen the pure ADO.NET books out there, but they put most of the explanation towards Windows forms, not web forms. I like how the author organizes the material and then further gives greater detail in other chapters (13 and 14). Chapter 3 introduces the reader to the updated data controls with some good detail on the advantages and disadvantages of using them, the new ObjectDataSource control, and how to incorporate the usual data-bound controls (GridView, DetailView and FormView) to them. A very good introduction to the basics.
The book (Chapter 4) then goes into using the SqlDataSource control (a good 35 pages) with topics like: Executing stored procedures and returning data, How to process return values from a stored procedure, How to handle null values, How to handle exceptions raised by the SqlDataSource control, How to detect conflict during updates, etc. Not to be overly praising this book, but I cannot remember one book that covered all these interesting topics before. Maybe I've seen this in two or three but not just one. A great chapter. The following chapter (5), the author reviews how to data bind XML data using the XmlDataSourceControl, how to filter the data, applying XSLT stylesheets, programmatically creating a XmlDataSource control, etc. A very thorough explanation of a control that is not talked about enough in other books.
One of the most interesting chapters of this book in my opinion is Chapter 6 which shows the basics (and much more) of data binding with objects. Instead of always depending on inline data source controls, you can create n-tier controls (though somewhat limited) and separate the code logic in separate classes. Though this chapter is semi-misleading because it still is talking about using a control (ObjectDataSource) in its examples. A better title would have been: Creating Object with the ObjectDataSource Control (or something like that). In any event, this chapter opens your eyes on one of the ways you can create some "real-world" development techniques.
The next two chapters (7 and 8) focus on making site wide changes to either your web pages (site navigation - SiteMapDataSource control) and how to modify existing controls like the GridView to create template columns and fields to unify your page look.
A great chapter that I automatically started reading right away was chapter 10 which focused on advanced data binding concepts such as creating a master/detail page (or parent/child), displaying selected rows in a GridView, creating custom templates in a GridView, using themes, using other controls (DropDownList) in a GridView, and extending the GridView. Lots of good stuff in this chapter that you will find on a bunch of websites or blogs or forums.
The last few chapters the author goes through creating a nice application (Rental Resevation System) and puts everything taught together. I think every book should have the last couple chapters of the book to put all the pieces together so the reader can get some ideas on how to use them in their own web applications. The code in the book is in C#, so for all you VB.NET developers you'll need to spend some time converting the code.
Apart from that this is an excellent book that teaches the reader how to really use ASP.NET 2.0 to its full potential and lots of tricks of the trade that would take you hours of searching online to find the answer. I highly recommend this book to any ASP.NET developer.Professional ASP.NET 2.0 Databases (Wrox Professional Guides) OverviewNow you can uncover the secrets behind accessing and retrieving data from a wide range of data sources such as SQL Server and XML sources. This book walks you through the array of ADO.NET 2.0 features and clearly shows you how they can be used to develop database-driven web applications in ASP.NET.
You'll first gain an in-depth understanding of the data source controls that enable data binding in the ASP.NET platform. Next you'll uncover the advanced features of ASP.NET, including site navigation, implementing sorting and paging, and editing data in templates. You'll then focus on designing transactions in ADO.NET 2.0, displaying data, and utilizing SQL Server 2005 XML.
Throughout the chapters, you'll find examples and source code (with ASP.NET examples written in C#) that you can integrate into your applications. This will enable you to leverage ADO.NET and ASP.NET features so you can easily create a scalable N-Tier web site.
Some of the topics covered include:
ASP.NET 2.0 Data Controls
Data Binding with the SqlDataSource Control, XML Data, and Objects
Selecting, Updating, Deleting Records
Programmatically Creating and Adding Controls
XSL Transformations with XmlDataSource Control
Using Generics with the ObjectDataSource Control
ASP.NET 2.0 Site Navigation including Implementing Breadcrumbs and Binding to Other Controls
Displaying and Editing Data Using Templates
GridView Sorting and Paging
Advanced Data Source and Data-Bound Controls including Master/Detail Display, Displaying Images from a Database, and Using Themes with Data Bound Controls
Transactions in .NET and Interoperability between System.Transactions and System.EnterpriseServices
Advanced ADO.NET for ASP.NET Data Display including DataSet Object, ADO.NET 2.0 DataTable, and Provider-Independent Data Access Code
Accessing Data from SQL Server 2005 including CLR in SQL Server 2005, New XML Features in SQL Server 2005, and Working with XML Data-Typed Columns from ADO.NET
N-Tier Architecture with ASP.NET 2.0 and SQL Server 2005
Best Practices for Creating ASP.NET Web Sites including Implementation of CLR Stored Procedures and Implementation of Layers


Want to learn more information about Professional ASP.NET 2.0 Databases (Wrox Professional Guides)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning ASP.NET 2.0 AJAX (Programmer to Programmer) Review

Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning ASP.NET 2.0 AJAX (Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning ASP.NET 2.0 AJAX (Programmer to Programmer) ReviewI bought this book based on a long, positive history with WROX products. I've got a whole shelf full of these volumes on various topics and they've historically been the best in the business.
Not so with this volume. These guys are obviously uberdorks who got an A in Computer Science and a C- in Language Arts. The writing is scattered, clunky, and generally subpar, making it very difficult to decipher portions of the book - let alone learn any programming disciplines from it. (In that regard, the editor(s) and proofreader of the volume also deserved to be flogged with a wet noodle.)
I expect a far more professional approach and delivery than this book provides. I'll struggle through it and learn the material, but it shouldn't be this difficult... The time of technical training manuals being written by eggheads with no affinity for interpersonal communication passed twenty years ago. Shame on WROX for releasing this volume in such disarray.Beginning ASP.NET 2.0 AJAX (Programmer to Programmer) Overview
Written by a high-power team of Microsoft MVPs, this book provides a comprehensive introduction to the ASP.NET AJAX features
After a quick overview of the architecture and features of ASP.NET 2.0 AJAX, coverage then goes on to show developers how to build richer, more responsive dynamic Web sites and Web applications
Dives into such topics as ASP.NET 2.0 AJAX user interface design issues, JavaScript enhancements with AJAX, how to use the UpdatePanel for implementing server-side controls, and XML scripting in AJAX
Also offers an outline of the ASP.NET 2.0 AJAXControl Toolkit, and discusses implementing drag and drop functions, databinding, debugging and security, ASP.NET services, and bridging and gadgets
The companion Web site provides readers with a rich set of code examples


Want to learn more information about Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional) Review

Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional)
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional) ReviewI found this book to be substantially better than others that I looked at. Most ASP.NET books focus on how to use the automated tools in Visual Web Developer. These are powerful tools, but they seem to give your website a "canned" look.
Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional covered these tools, but went deeper, and demonstrated how to access the important features of ASP.NET 2.0 directly in code. The material was very accessable to me as a novice, and the examples were extremely helpful. I was able to copy them into my code, make the modifications to address my needs, and they worked flawlessly.Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional) OverviewThe most up-to-date and comprehensive introductory ASP.NET book you'll find on any shelf, Beginning ASP.NET 2.0 in VB 2005 guides you through Microsoft's latest technology for building dynamic websites. You'll learn to build dynamic web pages on the fly, with only basic prior knowledge of Visual Basic. Included is exhaustive coverage of ASP.NET, to guide you from your first steps, to the most advanced techniques, like querying databases from within a web page and performance-tuning your site. You'll find tips for "best practices" and comprehensive discussions of key database and XML principles you need to know in order to be effective with ASP.NET. The book also emphasizes the invaluable coding techniques of object orientation and code behind, which will start you off on the track to build real-world websites right from the beginning-rather than just faking it with simplified coding practices. By the time you've finished the book, you will have mastered the core techniques and have all the knowledge you need to begin work as a professional ASP.NET developer.

Want to learn more information about Beginning ASP.NET 2.0 in VB 2005: From Novice to Professional (Beginning: from Novice to Professional)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

ASP.NET AJAX Programming Tricks Review

ASP.NET AJAX Programming Tricks
Average Reviews:

(More customer reviews)
Are you looking to buy ASP.NET AJAX Programming Tricks? Here is the right place to find the great deals. we can offer discounts of up to 90% on ASP.NET AJAX Programming Tricks. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

ASP.NET AJAX Programming Tricks ReviewThis book examines in detail AJAX, not just how-to use it like many others, but how AJAX integrates with the client and server. These types of details are really great because it helps to understand not just the usage of the UpdatePanel, ScriptManager, etc but how they integrate into the current ASP.NET environment. I am making use of AJAX at my work and find the details and examples incredibly useful. The discussion of client-state was great and will no doubt be very beneficial to my future AJAX controls.ASP.NET AJAX Programming Tricks OverviewWhether you're new to ASP.NET AJAX or an experienced developer, this book has what you're looking for! With its tutorial-like design, the text covers many basic and advanced topics for building dynamic database driven ASP.NET web applications. Assuring that you have a solid foundation, the text begins by exploring the basics of n-tier applications, databound custom controls, Http modules, and the ASP.NET AJAX extensions. Section II of the text takes all that was previously examined plus much more and puts it into practical use via the construction of ready to use controls for either standalone products or integration into your current project(s). ASP.NET Membership and Profile services are examined along with the AJAX application services enabling for seamless membership and profile integration into our highly rich AJAX-enabled web applications. Watch as the text seamlessly merges AJAX extenders and custom controls to build highly rich user experiences in a reusable object-oriented fashion.The design and construction of all objects and controls are discussed in full detail in a tutorial like format to achieve the desired goal - an in-depth understanding of the underlying technology so that you can not only use our projects but modify and design your own! All projects and controls built within the text make heavy use of AJAX technologies enabling a lucid understanding of real-world implementations.With its practical approach to constructing reusable object-oriented ASP.NET AJAX controls, ASP.NET AJAX Programming Tricks is a must for anyone with the desire to build or hone their ASP.NET AJAX programming skills.

Want to learn more information about ASP.NET AJAX Programming Tricks?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Professional ASP.NET MVC 2 (Wrox Programmer to Programmer) Review

Professional ASP.NET MVC 2 (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Professional ASP.NET MVC 2 (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Professional ASP.NET MVC 2 (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Professional ASP.NET MVC 2 (Wrox Programmer to Programmer) ReviewStarting with the ViewModel section of chapter 1, there is plently of errata which leaves you wondering. This is confirmed on the books official forums filled with people asking for answers.
In short, the book tries to use "TryUpdateModel" which doesn't work because you aren't using the Dinner model any more, but rather the DinnerFormViewModel. You have to use one of the overloaded TryUpdateModel methods in order for it to work. You can visit the book's forums for more details.
There are also a lot of errors in the map section of chapter 1 -- mainly in the ids you have to select using jQuery (#Dinner_Address instead of #Address, for example). You also don't get the CSS to position the map correctly -- you must make your own css to float the map to the right and position it.
EDIT: More errata: The C# code for finding the nearest dinners within 100 miles is not present in the book or the downloadable code. You get the sql code. However, like another function that they give you, you need SQL and C#. You can get the C# code at the forums.
Overall, it's a good introduction; however, the various errata in the advanced topics of Chapter 1 leave me doubting the quality of the rest of the book. Given that the problems are fixable (if you are willing to try and understand what it doesn't tell you and visit the book's forums for help), I am giving the book three stars.Professional ASP.NET MVC 2 (Wrox Programmer to Programmer) Overview

Want to learn more information about Professional ASP.NET MVC 2 (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Pro ASP.NET 2.0 in C# 2005 Review

Pro ASP.NET 2.0 in C# 2005
Average Reviews:

(More customer reviews)
Are you looking to buy Pro ASP.NET 2.0 in C# 2005? Here is the right place to find the great deals. we can offer discounts of up to 90% on Pro ASP.NET 2.0 in C# 2005. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Pro ASP.NET 2.0 in C# 2005 ReviewThis is problably the first 2.0-specific book to hit store shelves. I'm currently building with Visual Studio 2005 Beta 2. AFAIK this build has the final major changes. The book seems to be written for the final VS release. In ohter words, I have not found any outdated examples yet in my reading.
I got this book last week and I'm very pleased with it. I jumped ahead straight to the Membership and Profile sections. There are *several* chapters on this! I'm very impressed so far with their teaching abilities and I appreciate the fact that they give full examples. First the authors cover how to use ASP.NET 2.0's shrinkwrapped solution. Then they give detailed information on how to implement your own custom providers for Memebership and Roles. This is fantastic because at the time of this review, I had not found any complete examples on how to do this.
So far this book hs a great reference and help to me. It's over 1,000 pages but nothing of what I've seen appears to be "fluff". Nice job! I would definitely recommend this ASP.NET/C# programmers. I think beginners can follow it and advanced users will like the solid 2.0 coverage.Pro ASP.NET 2.0 in C# 2005 OverviewASP.NET 2.0 is the latest version of Microsoft's current ASP.NET 1.1 technology. ASP.NET 1.1 is fast becoming the accepted technology standard for creating dynamic web pages on the Windows platform, and is now used across the board from start-ups to blue-chip multi-national corporations. ASP.NET 2.0 is building on this solid foundation and adding new improvements. The new technology will be faster to code, offer a more powerful set of tools (i.e. MasterPages and Generics), and run faster when deployed, so that customers enjoy a significantly better user experience.Pro ASP.NET 2.0 in C# follows the well-regarded Pro ASP.NET 1.1, rooted in the same best-practices and pragmatic style. Matthew MacDonald explains how ASP.NET 2.0 works for the professional programmer - covering both new innovations and the features carried over from the previous version. And while new features are important, MacDonald stresses the importance of the technology as a cohesive whole. His broad-based approach shows how all of the features inter-relate. This gives readers the solid understanding they need to code real applications.

Want to learn more information about Pro ASP.NET 2.0 in C# 2005?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

ASP.NET 3.5 For Dummies Review

ASP.NET 3.5 For Dummies
Average Reviews:

(More customer reviews)
Are you looking to buy ASP.NET 3.5 For Dummies? Here is the right place to find the great deals. we can offer discounts of up to 90% on ASP.NET 3.5 For Dummies. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

ASP.NET 3.5 For Dummies ReviewI am an experienced developer so I only expected to skim over the book to get familiar with any of the new asp.net 3.5 features. I found myself reading every word of every page because the book was actually "entertaining". The writing is very smooth and easy to understand. You feel as if a really good teacher who knows how to relate to people is talking to you.
I was also surprised how deep the book was able to go into each subject. For example Linq is a very complicated subject yet the book does contain enough examples for you to use it in the real world.ASP.NET 3.5 For Dummies OverviewDid you volunteer to create a Web site for the softball team? Is it time to take your small business to the next level and let your customers shop online? Well, you can relax! ASP.NET 3.5 makes creating a dynamic site faster and cleaner than ever before, and ASP.NET 3.5 For Dummies makes it easier.
First, you'll get an introduction to all the tools and terminology you need to understand ASP.NET. If you've used earlier versions of ASP.NET and Visual Web Developer, you can probably skip that part and jump right into what's new in 3.5. You'll make friends with LINQ and SQL, create sites in Visual Web Developer 2008 Express, and much more. Before you know it, you'll discover how to:
Integrate data, track shopping cart contents, and whisk away bugs
Create user interfaces with easy navigation
Use the ListView control for sophisticated formatting
Write LINQ queries
Add a table to a database
Create an event handler
Take advantage of the drag 'n' drop feature that lets you write less code
Put all the features to work to develop dynamic Web applications

The softball team is going to love that Web site, and your customers might enjoy shopping on your site so much that you'll have to expand your business to fill all the orders! We can't promise that, of course, but we're pretty sure that ASP.NET 3.5 For Dummies will make creating Web sites easier and a lot more fun.

Want to learn more information about ASP.NET 3.5 For Dummies?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning ASP.NET 4.0 in C# 2010 Review

Beginning ASP.NET 4.0 in C# 2010
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning ASP.NET 4.0 in C# 2010? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning ASP.NET 4.0 in C# 2010. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning ASP.NET 4.0 in C# 2010 ReviewThis book has lots of good information, and it is in mostly the right order. The problem with this book for many readers will be the style of presentation. It has been proven many times that people learn by doing, but this book doesn't give you as much in that area as is necessary to learn. There is code that you can download but it doesn't really line up with the book.
The worst part of this book are the code snippets that are placed throughout the book. They don't show the surrounding code, so everything is out of context, and you don't feel 100% sure of where it goes in your file, and to top it off, it is code that sometimes doesn't relate to the code you download. Many times, instead of showing actual real-life variables, it just shows the equivalent of an 'x'. So you have no idea how it is supposed to come together. It continuously says 'code removed for clarity'. I understand the point of this as that code isn't the focus of this section, but if I'm building a page, I need to see that code to make sure I have the same code as the book.
I would have to say that the information given is very precise, and if you already know C#, you're probably going to enjoy this book, but if you are new to it, and need examples and practice, it's not the best. Imagine watching an Olympic freestyle skier for a few minutes, and then without ever having skied or practiced jumping, you are suddenly asked to do the same flips and twists perfectly. Maybe an exaggeration, but you are really left on your own a lot of the time.
The book is very dry, so you have a very long attention span and motivation to get through the book in order to do well with it. It is clear it is written by a programmer. There are constantly references to terms that haven't been defined previously, and sometimes you get the feeling this guy is trying to impress you with words. I've had professors like that, and although I respect their knowledge and intelligence, it does not contribute to a good learning atmosphere. I'm not saying 'dumb it down', but when learning a complex topic, the simpler it can be presented, the better.
Another problem is the low resolution of many of the screen shots. I know that's a limitation of the technology, but it can actually be somewhat dizzying to look at because of the blurriness.
There are other pros, and other cons, but I just touched on the main ones I noticed.Beginning ASP.NET 4.0 in C# 2010 OverviewBeginning ASP.NET 4.0 in C# 2010 follows in the footsteps of the highly successful .NET 2.0 and .NET 3.5 editions, teaching novice users how to use ASP.NET by gradually building their knowledge of the technology up in a pyramidal fashion chapter by chapter.Comprehensively revised for both ASP.NET 4.0 and the new Visual C# 2010 language this book presents the easiest path to ASP.NET 4.0 mastery.

Want to learn more information about Beginning ASP.NET 4.0 in C# 2010?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Amazon.com Mashups Review

Amazon.com Mashups
Average Reviews:

(More customer reviews)
Are you looking to buy Amazon.com Mashups? Here is the right place to find the great deals. we can offer discounts of up to 90% on Amazon.com Mashups. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Amazon.com Mashups ReviewIf you want to learn the various ways in which you can use Amazon's Web Services, this is an excellent starting point. Shanahan goes beyond "mashups" in the strict Web 2.0 sense of the term; he looks at the various ways of supporting wireless devices, and the use of the S3 storage service. The only nits (so far - I'm still working through some of the material) are that he assumes the use of Microsoft tools, and he identifies the term "JSON" with one particular style of mashup using script retrieval. (JSON is a serialization scheme which can be used for many different use cases, including RESTful interactions.) But these are minor points; this is an excellent book - and a lot of fun, too.Amazon.com Mashups Overview"This book will not only demonstrate how developers can utilize Amazon Web services to create cool mashups but will also help them convert it to money-making mashups - 'cashups.'"—Jinesh Varia, Amazon Web Services Developer Relations Team
Amazon.com is advancing the boundaries of the Internet through their powerful suite of web services. Innovative developers are combining Amazon data with other freely available sources to create new and interesting applications known as Mashups. This book teaches you the techniques behind mashup applications and for the first time shows you how to build them yourself.
The examples in this book show you how to integrate Amazon web services with APIs from Yahoo!, eBay, Google and YouTube. You'll learn how to combine data from disparate sources to create new applications using next generation browser techniques such as AJAX, JSON and Dynamic Scripting. You will learn how to re-purpose web service data so that it can be consumed from mobile devices such as a cell phone or PDA. Because both the theory and code are explained, you'll be able to easily take the lessons in this book to build your own killer mashup applications.
Expert web services developer Francis Shanahan guides you through the basics of web service consumption using XML, SOAP and REST. Next generation browser techniques such as AJAX are illustrated in easy to follow step by step examples. He also completes the picture by introducing advanced techniques to enhance performance such as the multi-threading web service features of ASP.NET 2.0.
With this book, you'll discover how to:
Build a generic AJAX library from the ground up
Consume publicly available APIs such as Yahoo!(r) Search, Google(r), eBay(r) and YouTube
Use SOAP to expose Amazon data as RSS
Convert Amazon data directly into JSON using XSLT
Plot Amazon.com customers on Yahoo Maps
Use the OpenSearch API to build your own search service
Access Amazon data from your cell phone using WML

Who this book is for
This book is for developers who have some prior experience with web technologies such as Javascript(r) and ASP.NET. This book covers a wide range of technologies and techniques including ASP.NET 2.0, WML, REST, RSS, SOAP, XML, XSLT, AJAX and JSON. Everything in the book is built using free tools and explained in detail, along with the source code which makes this a useful resource regardless of experience level.

Want to learn more information about Amazon.com Mashups?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

ASP.NET 2.0: Your visual blueprint for developing Web applications Review

ASP.NET 2.0: Your visual blueprint for developing Web applications
Average Reviews:

(More customer reviews)
Are you looking to buy ASP.NET 2.0: Your visual blueprint for developing Web applications? Here is the right place to find the great deals. we can offer discounts of up to 90% on ASP.NET 2.0: Your visual blueprint for developing Web applications. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

ASP.NET 2.0: Your visual blueprint for developing Web applications ReviewI bought this book to teach myself .NET and ASP. The whole book is nothing but a sequence of exercises, which is an interesting and possibly effective approach. 99.9% of the code you are given to enter in is presented in the images.
From the very first exercise, I have found frequent careless and typographical errors, such as menu sequences that don't exist or instructions that leave out a critical step. Furthermore, the code you are to enter is very small and hard to read. It is only given within images, and it varies from hard to read to virtually impossible to read. I get the impression that the author knows the subject well, but this book is written as though he was given impossible deadlines to meet, and the publisher doesn't seem to have proofread the manuscript, because it contains continuous errors. I think that the author is capable of producing a better product, and I wouldn't hesitate to look at another book of his by a different publisher, but I must regretfully recommend that people seeking to learn this subject avoid this particular book.ASP.NET 2.0: Your visual blueprint for developing Web applications OverviewOnly Visual Blueprint takes a visual approach to professional-level computer topics, and this guide demonstrates over 150 key ASP.NET 2.0 techniques with step-by-step screen shots. You'll see how to add a page to a Web site, write and read user cookies, collect user input with checkboxes, create an image map, display data in the GridView, reset user passwords, format the CreateUser Wizard, use nesting master pages, handle errors, build a Web service, and put together a terrific site.

Want to learn more information about ASP.NET 2.0: Your visual blueprint for developing Web applications?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer) Review

Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer)
Average Reviews:

(More customer reviews)
Are you looking to buy Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer) ReviewDino is a well respected author and developer. I have read at least five of his books. They range from old school ADO.NET to architecting web applications for the enterprise (highly recommend that read). This book is well written and organized. The content is heavy on the front end as the title suggests. You will explore the kludgy innards of JavaScript. jQuery and many Ajax approaches are also considered. In addition, Dino puts his own personal spin on patterns and processes.
The book starts very well with a background in the Ajax surge. It then jumps into the client side, patterns, binding to the client and ends with RIA's. Overall this is solid and I recommend the read if not quick skimming after the fifth chapter.
However, .NET 4.0 is right around the corner. The client side bindings, more jQuery integration and updated Microsoft Ajax JavaScript libraries will change a lot of how this book approaches Ajax. Therefore, its an interim book for those not looking to move to 4.0 and live in at least the 3.5 world for the foreseeable future.
It delves into Silverlight a bit and. But has no mention of the ground swell of popularity that is ASP.NET MVC and its fairly elegant Ajax approach. One of the highlights is Dino's insight into the pros and cons of partial rendering vs. full scale asynchronous approaches. I have been on an enterprise application where we had to implement the former. He nailed the reasons why.
Read this book if you want a good background in current technologies that are changing at the speed of light. It won't be a gold source for later pick up and review though.Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer) Overview
Rethink the way you plan, design, and build Web applications-with expert guidance from Web development luminary Dino Esposito. Whether giving legacy sites a much-needed tune-up-or architecting rich Internet applications from the ground up-you'll learn pragmatic approaches to AJAX development that you can employ today.

Discover how to:

Delve into the mechanics and design goals of partial rendering-such as improving page-refresh speed
Use AJAX-enabled server controls to bring desktop-like functionality to Web solutions
Apply design patterns to common Web development issues, including client-side data binding
Manipulate JavaScript more easily using the jQuery and Microsoft AJAX libraries
Examine the interoperability and security models in Microsoft Silverlight
Weigh the tradeoffs when architecting Web applications for richness (Silverlight) vs. reach (AJAX)-and deliver the right solution for your audience


Want to learn more information about Microsoft® ASP.NET and AJAX: Architecting Web Applications (PRO-Developer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Pro ASP.NET MVC Framework Review

Pro ASP.NET MVC Framework
Average Reviews:

(More customer reviews)
Are you looking to buy Pro ASP.NET MVC Framework? Here is the right place to find the great deals. we can offer discounts of up to 90% on Pro ASP.NET MVC Framework. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Pro ASP.NET MVC Framework ReviewI read this book about a week after reading the wrox-published "four talking heads" book by Guthrie, et. al.
It was like night and day. This book is, simply put, perfect. I could not put it down. Sanderson does such a magnificent job at taking the reader from "Hello, MVC" all the way through fairly advanced application concepts that I have a whole new threshold for what a "good" programming book is.
Throughout the book, he does a wonderful job of keeping true to good, solid principles of design, using proven patterns of Test-Driven Design, Domain Modeling, and Dependency Injection; but (to borrow another reviewer's term) never from an "ivory tower" perspective. His approach is always well-grounded in real developer concerns and application needs.
I sincerely hope this isn't Mr. Sanderson's last programming book.Pro ASP.NET MVC Framework OverviewThe ASP.NET Model-View-Controller (MVC) Framework is a widely anticipated extension and improvement to the way that ASP.NET applications are architected and developed. MVC frameworks have been widely and successfully employed in other technology areas, such as Java, for some time. This is Microsoft's long-awaited version for the .NET framework and community interest is very high.This book aims to give the average ASP.NET developer everything they need to make the leap from traditional ASP.NET practices to ASP.NET MVC techniques. It details the minutiae of the MVC framework, and the official MVC developer's toolkit that supports it, before going further and demonstrating these techniques in action by creating a working eCommerce website - a design that has been widely deployed in traditional ASP.NET and that will serve to highlight the differences well. Finally, the book provides readers with a rapid run-down of how traditional ASP.NET features are applied differently in ASP.NET MVC to get them up and running quickly and to provide a valuable reference as they begin their own projects.

Want to learn more information about Pro ASP.NET MVC Framework?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer) Review

Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer) ReviewWhile I've already read Beginning ASP.NET 3.5 by Imar Spaanjaars and moved rather far beyond it, when I had the opportunity to recieve his new book on ASP.NET 4 for review, I took it.
Would I still feel strongly about recommending his work as *the* #1 choice for those new (or relatively new) to ASP.NET? Would it offer enough new content over the previous iteration that I'd recommend a new purchase if someone had the first?
===
First, if you're just getting started with ASP.NET, this is once again *the* book to start with. The way the book reads makes it extremely easy to keep up with where he's at, and why. At the end you'll end up with a functional site, having built it yourself, using a good deal of ASP.NET functionality.
The book also assumes little experience with HTML and CSS, which makes this book a fairly good start for anyone who wants to get started with creating Web sites (using ASP.NET), even going into the developer tool Visual Web Developer 2010.
The book itself is a *vast* improvement over previous iterations, with a much more solid wrap and softer (but still thick) pages. (Although the pages must be somewhat thinner, since the previous iteration of this book is about the same depth as this one, even though this has ~70 more pages.)
The guitar on the cover has left me guessing a bit, all the way from 'rock star' to 'hero' to 'he creates a music-related site' but if you don't get stuck on such things, you'll be fine.
===
If you've purchased and read the previous iteration of this book, Beginning ASP.NET 3.5, you might be wondering if it makes sense to pick this up.
The only new chapter is one on jQuery (although Microsoft AJAX is still covered and used as before), and it's primarily an introduction, which fits within the context of this book. Crawling the jQuery site for a little while will probably get you up to speed just as well. Otherwise, the rest has been updated to ASP.NET 4 and the current versions of software; little else has changed.
If you picked up the previous iteration and couldn't get through it, then don't bother with this, as it's quite similar. Likewise for if you've moved beyond Beginning ASP.NET 3.5, and feel comfortable with the technology; ASP.NET 4 isn't dug into so much here that you can't get the information elsewhere with some basic searching.
===
To conclude, Beginning ASP.NET 4 in C# and VB is *the* book I *highly* recommend to get started with ASP.NET (3.5 or 4). Imar knows the technology as well as how to teach it, from beginning to Web site created. 5 of 5 stars.Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer) OverviewThis book is for anyone who wants to learn how to build rich and interactive web sites that run on the Microsoft platform. With the knowledge you gain from this book, you create a great foundation to build any type of web site, ranging from simple hobby-related web sites to sites you may be creating for commercial purposes.
Anyone new to web programming should be able to follow along because no prior background in web development is assumed although it helps if you do have a basic understanding of HTML and the web in general. The book starts at the very beginning of web development by showing you how to obtain and install Visual Web Developer. The chapters that follow gradually introduce you to new technologies, building on top of the knowledge gained in the previous chapters.
Do you have a strong preference for Visual Basic over C# or the other way around? Or do you think both languages are equally cool? Or maybe you haven't made up your mind yet and want to learn both languages? Either way, you'll like this book because all code examples are presented in both languages!
Even if you have some experience with prior versions of ASP.NET, you may gain a lot from this book. Although many concepts from previous versions are brought forward into ASP.NET 4, you'll discover there's a lot of new stuff to be found in this book, including an introduction to the ADO.NET Entity Framework, the inclusion of jQuery, ASP.NET AJAX, the many changes to the ASP.NET 4 Framework, and much more.
This book teaches you how to create a feature-rich, data-driven, and interactive web site called Planet Wrox. Although this is quite a mouthful, you'll find that with Visual Web Developer 2010, developing such a web site isn't as hard as it seems. You'll see the entire process of building a web site, from installing Visual Web Developer 2010 in Chapter 1 all the way up to putting your web application on a live server in Chapter 19. The book is divided into 19 chapters, each dealing with a specific subject.

Chapter 1, "Getting Started with ASP.NET 4" shows you how to obtain and install Visual Web Developer 2010. You'll get instructions for downloading and installing the free edition of Visual Web Developer 2010, called the Express edition. You are also introduced to HTML, the language behind every web page. The chapter closes with an overview of the customization options that Visual Web Developer gives you.

Chapter 2, "Building an ASP.NET Web Site" shows you how to create a new web site and how to add new elements like pages to it. Besides learning how to create a well-structured site, you also see how to use the numerous tools in Visual Web Developer to create HTML and ASP.NET pages.

Chapter 3, "Designing Your Web Pages." Visual Web Developer comes with a host of tools that allow you to create well-designed and attractive web pages. In this chapter, you see how to make good use of these tools. Additionally, you learn about CSS, the language that is used to format web pages.

Chapter 4, "Working with ASP.NET Server Controls." ASP.NET Server Controls are one of the most important concepts in ASP.NET. They allow you to create complex and feature-rich web sites with very little code. This chapter introduces you to the large number of server controls that are available, explains what they are used for, and shows you how to use them.

Chapter 5, "Programming Your ASP.NET Web Pages." Although the built-in CSS tools and the ASP.NET Server Controls can get you a long way in creating web pages, you are likely to use a programming language to enhance your pages. This chapter serves as an introduction to programming with a strong focus on programming web pages. Best of all: all the examples you see in this chapter (and the rest of the book) are in both Visual Basic and C#, so you can choose the language you like best.

Chapter 6, "Creating Consistent Looking Web Sites." ASP.NET helps you create consistent-looking pages through the use of master pages, which allow you to define the global look and feel of a page. Skins and themes help you to centralize the looks of controls and other visual elements in your site. You also see how to create a base page that helps to centralize programming code that you need on all pages in your site.

Chapter 7, "Navigation." To help your visitors find their way around your site, ASP.NET comes with a number of navigation controls. These controls are used to build the navigation structure of your site. They can be connected to your site's central site map that defines the pages in your web site. You also learn how to programmatically send users from one page to another.

Chapter 8, "User Controls." User controls are reusable page fragments that can be used in multiple web pages. As such, they are great for repeating content such as menus, banners, and so on. In this chapter, you learn how to create and use user controls and enhance them with some programmatic intelligence.

Chapter 9, "Validating User Input." A large part of interactivity in your site is defined by the input of your users. This chapter shows you how to accept, validate, and process user input using ASP.NET Server Controls. Additionally, you see how to send e-mail from your ASP.NET web application and how to read from text files.

Chapter 10, "ASP.NET AJAX." Microsoft ASP.NET AJAX allows you to create good-looking, flicker-free web pages that close the gap between traditional desktop applications and web applications. In this chapter you learn how to use the built-in Ajax features to enhance the presence of your web pages, resulting in a smoother interaction with the web site.

Chapter 11, "jQuery." jQuery is a popular, open source and cross-browser JavaScript library designed to make it easier to interact with web pages in the client's browser. In this chapter you learn the basics of jQuery and see how to add rich visual effects and animations to your web pages.

Chapter 12, "Introducing Databases." Understanding how to use a database is critical to building web sites, as most modern web sites require the use of a database. You'll learn the basics of SQL, the query language that allows you to access and alter data in a database. In addition, you are introduced to the database tools found in Visual Web Developer that help you create and manage your SQL Server databases.

Chapter 13, "Displaying and Updating Data." Building on the knowledge you gained in the previous chapter, this chapter shows you how to use the ASP.NET data-bound and data source controls to create a rich interface that enables your users to interact with the data in the database that these controls target.

Chapter 14, "LINQ and the ADO.NET Entity Framework." LINQ is Microsoft's solution for accessing objects, databases, XML, and more. The ADO.NET Entity Framework (EF) is Microsoft's new technology for database access. This chapter shows you what LINQ is all about, how to use the visual EF designer built into Visual Studio, and how to write LINQ to EF queries to get data in and out of your SQL Server database.

Chapter 15, "Working with Data—Advanced Topics." While earlier chapters focused mostly on the technical foundations of working with data, this chapter looks at the same topic from a front-end perspective. You see how to change the visual appearance of your data through the use of control styles. You also see how to interact with the data-bound controls and how to speed up your application by keeping a local copy of frequently accessed data.

Chapter 16, "Security in Your ASP.NET 4 Web Site." Although presented quite late in the book, security is a first-class, important topic. This chapter shows you how to make use of the built-in ASP.NET features related to security. You learn about a number of application services that facilitate security. You also learn how to let users sign up for an account on your web site, how to distinguish between anonymous and logged-on users, and how to manage the users in your system.

Chapter 17, "Personalizing Web Sites." Building on the security features introduced in Chapter 16, this chapter shows you how to create personalized web pages with content targeted at individual users. You see how to configure and use ASP.NET Profile that enables you to store personalized data for known and anonymous visitors.

Chapter 18, "Exception Handling, Debugging, and Tracing." In order to understand, improve, and fix the code you write for your ASP.NET web pages you need good debugging tools. Visual Web Developer ships with great debugging support that enables you to diagnose the state of your application at run time, helping you find and fix problems before your users do.

Chapter 19, "Deploying Your Web Site." By the end of the book, you should have a web site that is ready to be shown to the world. But how exactly do you do that? What are the things you need to know and understand to put your web site out in the wild? This chapter gives the answers and provides you with a good look at configuring different production systems in order to run your final web site.

Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.

Want to learn more information about Beginning ASP.NET 4: in C# and VB (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...