Dotnetcat » .NET Books » ASP.NET books

Sort by:

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

Author: Imar Spaanjaars
List price: $44.99
Amazon price: $21.99   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Wrox (22 March 2010)

This 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.

Pro ASP.NET MVC 3 Framework

Author: Steven Sanderson
List price: $54.99
Amazon price: $34.19   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Apress (27 June 2011)

The ASP.NET MVC 3 Framework is the latest evolution of Microsoft’s ASP.NET web platform. It provides a high-productivity programming model that promotes cleaner code architecture, test-driven development, and powerful extensibility, combined with all the benefits of ASP.NET 4.
In this third edition, the core model-view-controller (MVC) architectural concepts are not simply explained or discussed in isolation, but are demonstrated in action. You’ll work through an extended tutorial to create a working e-commerce web application that combines ASP.NET MVC with the latest C# language features and unit-testing best practices. By gaining this invaluable, practical experience, you’ll discover MVC’s strengths and weaknesses for yourself—and put your best-learned theory into practice.
The book's authors Steve Sanderson and Adam Freeman have both watched the growth of ASP.NET MVC since its first release. Steve is a well-known blogger on the MVC Framework and a member of the Microsoft Web Platform and Tools team. Adam started designing and building web applications 15 years ago and has been responsible for some of the world's largest and most ambitious projects. You can be sure you are in safe hands.

What you’ll learn
  • Gain a solid architectural understanding of ASP.NET MVC 3, including basic MVC
  • Explore the entire ASP.NET MVC Framework
  • See how MVC and test-driven development work in action
  • Capitalize on your existing knowledge quickly and easily through comparison of features in classic ASP.NET to those in ASP.NET MVC
  • Learn about the latest security and deployment issues, including those related to IIS 7
Who this book is for

This book is for web developers with a basic knowledge of ASP.NET and C# who want (or need) to start using the new ASP.NET MVC 3 Framework.

Table of ContentsPart 1
1. The Big Idea
2. Getting Ready
3. Your First MVC Application
4. The MVC Pattern
5. Essential Language Features
6. Essential Tools for MVC
7. SportsStore I – A Real Application
8. SportsStore II – Navigation & Cart
9. SportsStore III - Administration
Part 2
10. Overview of MVC projects
11. URLs, Routing & Areas
12. Controllers & Actions
13. Filters
14. Controller Extensibility
15. Views
16. Model Templates
17. Model Binding
18. Model Validation
19. Unobtrusive Ajax
20. jQuery
Part 3.
21. Security
22. Authentication & Authorization
23. Deployment

Professional ASP.NET MVC 3 (Wrox Programmer to Programmer)

Author: Jon Galloway
List price: $44.99
Amazon price: $24.94   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Wrox ( 9 August 2011)

New edition of the top book on MVC from the top ASP.NET experts at Microsoft!
MVC 3 is the latest update to Microsoft's Model-View-Controller technology, which enables developers to build dynamic, data-driven web sites. This in-depth book shows you step by step how to use MVC 3. Written by top ASP.NET MVC experts at Microsoft, the latest edition of this popular book covers new and updated features such as the new View engine, Razor, NuGet, and much more. The book's practical tutorials reinforce concepts and allow you create real-world applications. Topics include controllers and actions, forms and HTML helpers, Ajax, unit testing, and much more.

  • Shows developers and programmers how to use ASP.NET MVC 3, Microsoft's new version of its Model-View-Controller technology for developing dynamic, data-driven web sites
  • Features an expert author team?all are members of Microsoft's ASP.NET team
  • Uses a step-by-step approach to explain all major features and functionalities and provides practical tutorials to allow you to create real-world applications
  • Goes into theory as well as practical application and covers such topics as Razor, NuGet (PowerShell inside Visual Studio 2010), and new layout features
Move your development skills to the next level with MVC 3 and Professional ASP.NET MVC 3.

Beginning ASP.NET 4 in C# 2010

Author: Matthew MacDonald
List price: $39.99
Amazon price:   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Apress (31 August 2010)

The most up-to-date and comprehensive introductory ASP.NET book you’ll find on any shelf, Beginning ASP.NET 4 in C# 2010 guides you through Microsoft’s latest technology for building dynamic web sites. Learn how to build sophisticated web pages quickly and easily using the most powerful tools available.

Starting with the basics, this book provides exhaustive coverage of ASP.NET, guiding you from your first steps right through to advanced techniques - such as making database queries from within a web page, tuning your website for optimal performance and deploying your website to production servers.

Within these pages, 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 fully explains the crucial coding techniques of object-orientation and code-behind on which your future as a successful ASP.NET developer relies.

What you’ll learn
  • How to build well-structured ASP.NET 4 applications including how to incorporate data from databases, XML files, web services, and other services.
  • A solid understanding of key ASP.NET concepts such as master pages, themes, state management, session state, and error handling, and of which techniques work best in which situations.
  • How to improve the user experience of your pages through the use of ASP.NET AJAX.
Who this book is for

This book is ideal for anyone new to .NET development who wants to learn how ASP.NET works. No prior programming knowledge is assumed and all concepts are explained from first principals.

Table of Contents Part 1: Introducing .NET
  1. The .NET Framework
  2. The C# Language
  3. Types, Objects, and Namespaces
Part 2: Developing ASP.NET Applications
  1. Visual Studio
  2. Web Form Fundamentals
  3. Web Controls
  4. Error Handling, Logging, and Tracing
  5. State Management
Part 3: Building Better Web Forms
  1. Validation
  2. Rich Controls
  3. User Controls and Graphics
  4. Styles, Themes, and Master Pages
  5. Website Navigation
Part 4: Working with Data
  1. ADO.NET Fundamentals
  2. Data Binding
  3. The Data Controls
  4. Files and Streams
  5. XML
Part 5: Website Security
  1. Security Fundamentals
  2. Membership
  3. Profiles
Part 6: Advanced ASP.NET
  1. Advanced ASP.NET Components
  2. Caching
  3. LINQ and the Entity Framework
  4. ASP.NET AJAX
  5. Deploying ASP.NET Applications

Murach's ASP.NET 4 Web Programming with C# 2010 (Murach: Training & Reference)

Author: Anne Boehm
List price: $54.50
Amazon price: $34.34   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Mike Murach & Associates (26 April 2011)

"In the last 3 years, I have tried to learn C# for web programming using books from a number of different publishers, but have always lost my motivation. The books were just not geared toward someone trying to learn on their own. Then, I checked out your ASP.NET/C# book from our corporate library. What a fantastic book! It's in such high demand at work that I bought my own copy." (A developer's comment on a previous edition of Murach's ASP.NET)


Already know how to code in C# 2010? Then, master web programming with this .NET 4 edition of the ASP.NET book that's a favorite of developers. It teaches beginners how to develop web applications from scratch. And more seasoned professionals use it as a time-saving guide whenever they need the "how-to" details that take forever to find online.

Here's a quick rundown on what developers have always liked best about this book:

#1: Complete applications show you how all the pieces interact
The key to mastering ASP.NET 4 is to have plenty of real-world applications that guide you in using the new skills that you're learning...and that help you avoid the problems that you might run into as you build complex web sites. That's why this book gives you complete applications, including the web forms, the aspx code, and the C# code. Download the applications for free from the Murach website, and experiment with them on your own to see how valuable they are.

#2: It gives you a 6-chapter section on database programming that's geared to business applications
Database handling is crucial in business programming, yet it's glossed over in just a chapter or two in many books. In contrast, this 6-chapter section teaches you how to use SQL data sources and ASP.NET data controls to develop database applications with little or no C# code. Then, it teaches you how to use object data sources to create 3-layer applications that let you separate the presentation code from the data access code. And each topic is illustrated using examples like maintenance and shopping cart applications...the kind of database applications you'll deal with every day.

#3: It teaches you ASP.NET development the way it should be done, using Visual Studio 2010
The 1.x edition of this book was one of the first to teach web development using Visual Studio instead of tools like Notepad. Today, no developer should miss out on the productivity features of Visual Studio 2010. So those features are integrated throughout this book, rather than being relegated to just a chapter or two at the beginning.

#4: It teaches you ASP.NET 4 features when they're appropriate, not just convenient
In contrast to some books, the ASP.NET 4 features haven't just been tacked onto the chapters from the previous .NET 3.5 edition. Instead, authors Anne Boehm and Joel Murach have carefully analyzed how the changes affect the way you develop web applications and what you need to learn when. That means this book integrates the new material with the classic ASP.NET features that haven't changed, giving you a cohesive, fluid approach to learning web programming the way it's done today.

#5: The distinctive paired-pages format* makes learning...and reference...a breeze
A few years ago, a customer used the term "paired pages" to describe our presentation style, and the name has stuck. It means that this book presents each topic in a two-page spread. The right page gives screen shots, code, syntax, bulleted details--whatever is needed to illustrate and summarize the topic; the left page provides extra explanation and perspective as needed. That makes it easy for developers at any level to skim through material they already know and focus on what's new to them.

Professional ASP.NET Design Patterns

Author: Scott Millett
List price: $49.99
Amazon price: $25.19   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Wrox ( 1 July 2010)

This unique book takes good ASP.NET (MVC/Webforms) application construction one step further by emphasizing loosely coupled and highly cohesive ASP.NET web application architectural design. Each chapter
addresses a layer in an enterprise ASP.NET (MVC/Webforms) application and shows how proven patterns, principles, and best practices can be leveraged to solve problems and improve the design of your code. In addition, a professional-level, end-to-end case study is used to show how to use best practice design patterns and principles in a real website.
Professional ASP.NET Design Patterns:

  • All patterns and principles are applicable to ASP.NET MVC and ASP.NET Web forms
  • Demonstrates how to use the Gang of Four design patterns to improve your ASP.NET code
  • Shows how Fowler's Enterprise patterns and the S.O.L.I.D. design principles fit into an enterprise-level ASP.NET site
  • Provides details on how to layer an ASP.NET application and separate your concerns and responsibilities
  • Details AJAX patterns using JQuery and Json, and messaging patterns with WCF
  • Shares best practice tools for ASP.NET such as AutoMapper, NHibernate, StructureMap, Entity Framework, and Castle MonoRail
  • Uncovers tips for separating a site's UX and presentation layer using MVC, MVP and the Front Controller patterns
  • Features code examples that are applicable to all versions of ASP.NET
This book features C# code examples in ASP.NET MVC and ASP.NET Web forms.
Stay up to date with the latest case study ASP.NET MVC C# code used in the book at the project home page aspnetdesignpatterns.codeplex.com/.
Contents:
Part 1: Introducing Patterns & Design Principles
1. The Pattern for successful applications
2. Dissecting the Patterns Pattern
Part 2: The Anatomy of an ASP.NET Application: Learning and Applying Patterns
3. Layering Your Application
4. Business Logic Layer: Organisation
5. Business Logic Layer: Patterns
6. Service Layer
7. Data Access Layer
8. Presentation Layer
9. User Experience Layer
Part 3: Case Study: The Online E-Commerce Store (ASP.NET MVC 2 in C#)
10. Requirements & Infrastructure
11. Product Catalogue Browsing
12. Shopping Basket
13. Membership
14. Ordering and Payment

Ultra-Fast ASP.NET: Build Ultra-Fast and Ultra-Scalable web sites using ASP.NET and SQL Server

Author: Richard Kiessig
List price: $49.99
Amazon price: $25.90   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Apress (10 November 2009)

Ultra-fast ASP.NET provides a practical guide to building extremely fast and scalable websites using ASP.NET and SQL Server. Written by a highly-experienced consultant it provides straight-forward guidance for achieving performance increases through clearly delimited alterations to website’s design and coding. The book deals with all aspects of website performance from client computer to the website code to the supporting IIS and SQL Servers that underpin it. This gives readers all the information that they need in a single volume.

Programming Microsoft ASP.NET 4

Author: Dino Esposito
List price: $59.99
Amazon price: $33.53   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Microsoft Press (14 March 2011)

Completely reengineered for ASP.NET 4—this definitive guide deftly illuminates the core architecture and programming features of ASP.NET 4 in a single, pragmatic volume. Web development expert Dino Esposito provides essential, architectural-level guidance, along with the in-depth technical insights designed to take you—and your solutions—to the next level. The book covers Dynamic Data, AJAX, Microsoft Silverlight®, ASP.NET MVC, Web forms, LINQ, and security strategies—and features extensive code samples in Microsoft Visual C#® 2010.

ASP.NET 4 Unleashed

Author: Stephen Walther
List price: $59.99
Amazon price: $32.50   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Sams (24 October 2010)

The most comprehensive book on Microsoft’s new ASP.NET 4, ASP.NET 4 Unleashed covers all facets of ASP.NET development. Led by Microsoft ASP.NET program manager Stephen Walther, an expert author team thoroughly covers the entire platform.

The authors first introduce the ASP.NET Framework’s basic controls and show how to create common site-wide layouts and styles. Next, they cover all aspects of accessing, presenting, organizing, and editing data. You’ll find thorough and practical sections on building custom components and controls, providing effective site navigation, securing sites and applications, and much more. This book presents hundreds of realistic code examples, reflecting the authors’ unsurpassed experience with ASP.NET both inside and outside Microsoft.

  • Build interactive Web Forms, validate form data, and upload files
  • Provide interactive calendars, wizards, site maps, and other valuable features
  • Design efficient, maintainable sites with Master Pages and Themes
  • Build data-driven applications with database controls, ADO.NET data access components, QueryExtender, LINQ to SQL, and WCF Data Services
  • Generate charts on the fly with the new Chart Control
  • Extend ASP.NET with custom controls and reusable components
  • Create site registration and authentication systems that store membership data in SQL Server or Active Directory
  • Use URL Routing to build dynamism, flexibility, readability, and SEO-friendliness into your URLs
  • Improve performance and scalability with caching and preloading
  • Maintain state with cookies, cookieless session state, and profiles
  • Localize, configure, package, and deploy ASP.NET applications
  • Use the ASP.NET MVC Framework to improve agility, testability, speed to market, and extensibility
  • Retrofit existing ASP.NET applications with Ajax and build pure client-side Ajax web applications
  • Construct a complete ASP.NET 4 website from start to finish

Pro ASP.NET 4 in C# 2010

Author: Matthew MacDonald
List price: $59.99
Amazon price: $104.56   Book details at Amazon.com
Average rating:  / 0 (0 reviews)
Publisher: Apress (30 June 2010)

ASP.NET 4 is the principal standard for creating dynamic web pages on the Windows platform. Pro ASP.NET 4 in C# 2010 raises the bar for high-quality, practical advice on learning and deploying Microsoft's dynamic web solution.

This edition is updated with everything you need to master up to version 4 of ASP.NET, including coverage of ASP.NET MVC, ASP.NET AJAX 4, ASP.NET Dynamic Data, and Silverlight 3.

Seasoned .NET professionals Matthew MacDonald and Mario Szpuszta explain how you can get the most from these groundbreaking technologies. They cover ASP.NET 4 as a whole, illustrating both the newer 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 4 applications in the best possible style.

Table of Contents
  1. Introducing ASP.NET
  2. Visual Studio
  3. Web Forms
  4. Server Controls
  5. ASP.NET Applications
  6. State Management
  7. ADO.NET Fundamentals
  8. Data Components and the DataSet
  9. Data Binding
  10. Rich Data Controls
  11. Caching and Asynchronous Pages
  12. Files and Streams
  13. LINQ
  14. XML
  15. User Controls
  16. Themes and Master Pages
  17. Website Navigation
  18. Website Deployment
  19. The ASP.NET Security Model
  20. Forms Authentication
  21. Membership
  22. Windows Authentication
  23. Authorization and Roles
  24. Profiles
  25. Cryptography
  26. Custom Membership Providers
  27. Custom Server Controls
  28. Graphics, GDI+, and Charting
  29. JavaScript and Ajax Techniques
  30. ASP.NET AJAX
  31. Portals with Web Part Pages
  32. MVC
  33. Dynamic Data
  34. Silverlight
« Previous12345678910303304Next »