Skip to content

ASP. NET 2. 0 Cookbook 125 Solutions in C# and Visual Basic for Web Developers

Best in textbook rentals since 2012!

ISBN-10: 0596100647

ISBN-13: 9780596100643

Edition: 2nd 2005 (Revised)

Authors: Michael Kittel, Geoffrey LeBlond

List price: $54.95
Blue ribbon 30 day, 100% satisfaction guarantee!
what's this?
Rush Rewards U
Members Receive:
Carrot Coin icon
XP icon
You have reached 400 XP and carrot coins. That is the daily max!

People who have reviewed the beta release of Microsoft's Visual Studio 2005 note that the most striking changes to this developer's toolkit are evident in ASP.NET, the product for building dynamically generated web applications. By designing the .NET Framework to handle more of the plumbing, Microsoft has given ASP.NET 2.0 several new ready-to-use controls, making life much easier for web developers by considerably reducing the amount of code they need to write by up to 70%. Yet, despite of (and, in some cases, because of) all this automation, there are numerous nagging challenges that web application developers face with ASP.NET everyday. Challenges that eat valuable time. This new…    
Customers also bought

Book details

List price: $54.95
Edition: 2nd
Copyright year: 2005
Publisher: O'Reilly Media, Incorporated
Publication date: 1/24/2006
Binding: Paperback
Pages: 1014
Size: 7.00" wide x 9.25" long x 1.75" tall
Weight: 2.728
Language: English

Michael Kittel has nearly 30 years experience in the software industry. He has been working with Microsoft technologies for more than 10 years and with ASP.NET since the alpha release of 1.0. He has been the system architect and led the development of applications for Lexis-Nexis, Plow & Hearth, ReturnBuy, and many others. Michael has a Microsoft Certified Solutions Developer certification and is currently a senior consultant at Dominion Digital, Inc. (http://www.dominiondigital.com), a firm that specializes in helping companies envision and achieve maximum business value from investments.

Geoffrey T. LeBlond is the co-author of "Using 1-2-3", the first computer book that sold over 1 million copies. Geoff is the author of numerous computer books, and was the developer of Oriel, an early scripting language for Microsoft Windows. More recently, Geoff has been focusing his attention on developing web applications using ASP and ASP.NET.

Preface
Master Pages
Generating a Quick Master/Content Page Arrangement
Extending a Master Page's Content to Include Content for Other Application Pages
Changing Which Master Page Is Used Without Modifying All Affected Application Pages
Setting the Master Page at Runtime
Tabular Data
Selecting the Right Tabular Control
Generating a Quick-and-Dirty Tabular Display
Enhancing the Output of a Tabular Display
Displaying Data from an XML File
Displaying an Array as a Group of Checkboxes
Displaying Data from a Hashtable
Adding Next/Previous Navigation to a DataGrid
Adding First/Last Navigation to a DataGrid
Adding Direct Page Navigation to a DataGrid
Sorting Data in Ascending/Descending Order Within a DataGrid
Combining Sorting and Paging in a DataGrid
Paging Through a Record-Heavy DataGrid
Editing Data Within a DataGrid
Navigating and Sorting Within a GridView
Updating a GridView Without Refreshing the Whole Page
Editing Data in a GridView
Inserting a Row Within a GridView
Formatting Columnar Data in a GridView
Allowing Selection Anywhere Within a GridView
Adding a Delete Confirmation Pop-Up
Displaying a Pop-Up Details Window
Adding a Totals Row to a GridView
Validation
Requiring That Data Be Entered in a Field
Requiring Data to Be in a Range
Requiring That Two Data Input Fields Match
Requiring Data to Match a Predefined Pattern
Requiring That a Drop-Down List Selection Be Made
Requiring Data to Match a Database Entry
Using Validation Groups to Support Login and New User Registration Within a Single Form
Performing Validation Programmatically to Execute Your Own Application-Specific Logic
Forms
Setting the Default Button to Submit a Form
Submitting a Form to a Different Page
Simulating Multipage Forms
Setting the Initial Focus to a Specific Control
Setting the Focus to a Control with a Validation Error
User Controls
Sharing a Page Header on Multiple Pages
Creating a Customizable Navigation Bar
Reusing Code-Behind Classes
Communicating Between User Controls
Adding User Controls Dynamically
Custom Controls
Combining HTML Controls in a Single Custom Control
Creating a Custom Control with Attributes
Creating a Custom Control with State
Using the Control State with Custom Controls
Customizing an ASP.NET TextBox Server Control
Maintaining State
Maintaining Information Needed by All Users of an Application
Maintaining Information About a User Throughout a Session
Preserving Information Between Postbacks
Preserving Information Across Multiple Requests for a Page
Error Handling
Handling Errors at the Method Level
Handling Errors at the Page Level
Handling Errors at the Application Level
Displaying User-Friendly Error Messages
Security
Restricting Access to All Application Pages
Restricting Access to Selected Application Pages
Restricting Access to Application Pages by Role
Using Windows Authentication
Using Membership and Roles
Profiles and Themes
Using Profiles
Inheriting a Profile
Using and Migrating Anonymous Profiles
Managing User Profiles
Using Themes
User-Personalized Themes
Web Parts
Using Server Controls and User Controls as Web Parts
Creating a Reusable Web Parts Catalog
Creating a Custom Web Part
Communicating Between Web Parts
Persisting Personalized Web Part Properties
Configuration
Overriding Default HTTP Runtime Parameters in web.config
Adding Custom Application Settings in web.config
Displaying Custom Error Messages
Maintaining Session State Across Multiple Web Servers
Accessing Other web.config Configuration Elements
Adding Your Own Configuration Elements to web.config
Encrypting web.config Sections
Tracing and Debugging
Uncovering Page-Level Problems
Uncovering Application-Wide Problems
Pinpointing the Cause of an Exception
Uncovering Problems Within Web Application Components
Uncovering Problems Within Dual-Use Components
Writing Trace Data to the Event Log with Controllable Levels
Sending Trace Data via Email with Controllable Levels
Using a Breakpoint to Stop Execution of an Application When a Condition Is Met
Web Services
Creating a Web Service
Consuming a Web Service
Creating a Web Service That Returns a Custom Object
Setting the URL of a Web Service at Runtime
Dynamic Images
Drawing Button Images on the Fly
Creating Bar Charts on the Fly
Displaying Images Stored in a Database
Displaying Thumbnail Images
Caching
Caching Pages
Caching Pages Based on Query String Parameter Values
Caching Pages Based on Browser Type and Version
Caching Pages Based on Developer-Defined Custom Strings
Caching Pages Based on Database Dependencies
Caching User Controls
Caching Application Data
Caching Application Data Based on Database Dependencies
Caching Data Sources
Internationalization
Localizing Request/Response Encoding
Providing Multiple Language Support
Using Global Resources and Overriding Currency Formatting
File Operations
Downloading a File from the Web Server
Uploading a File to the Web Server
Processing an Uploaded File Without Storing It on the Filesystem
Storing the Contents of an Uploaded File in a Database
Performance
Reducing Page Size by Selectively Disabling the ViewState
Speeding Up String Concatenation with a StringBuilder
Speeding Up Read-Only Data Access
Speeding Up Data Access to a SQL Server Database Using the SQL Provider
HTTP Handlers
Creating a Reusable Image Handler
Creating a File Download Handler
Assorted Tips
Accessing HTTP-Specific Information from Within a Class
Executing External Applications
Transforming XML to HTML
Determining the User's Browser Type
Dynamically Creating Browser-Specific Stylesheets
Saving and Reusing HTML Output
Sending Mail
Dynamic Menus
Adding Breadcrumbs
Index