Wiley.com
Print this page Share

Beginning ASP.NET Databases Using VB.NET

Beginning ASP.NET Databases Using VB.NET (076454375X) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
Access to sample database

A couple of readers have reported difficulty in getting access to the sample Northwind database from their ASP.NET applications. If this is happening to you, take a look at the following file, which should provide the help you need:

Program Files\Microsoft Visual Studio .NET\FrameworkSDK\
Samples\Setup\html\ConfigDetails.htm
19-Aug-02 1
**Warning about operating systems**

To use this book, you need a computer running Windows 2000 (any version) or Windows XP Professional Edition. The examples it contains will not run on Windows XP Home Edition

07-Nov-02 1
7 245 Wrongly located source code

The UpdateRecord() and UpdateProduct() method definitions that appear on this and the following page contain an error that's not present in the code available for download. These two lines, which appear at the end of UpdateRecord():

dgProducts.DataSource = ds.Tables(ProductTableName)
dgProducts.DataBind()
should correctly be located at the end of UpdateProduct()

19-Aug-02 1
250 Wrongly located source code II

Similar to the error on page 245, the following two lines of code:

dgProducts.DataSource = ds.Tables(ProductTableName)
dgProducts.DataBind()

belong at the end of DeleteProduct(), rather than DeleteRecord()
05-Mar-03 1

Related Titles

More By These Authors

General Programming & Software Development

by Andrew Filev, Tony Loton, Kevin McNeish, Ben Schoellmann, John Slater, Chaur G. Wu
by John Green, Stephen Bullen, Felipe Martins, Brian Johnson
by Robert Smith, Dave Sussman, Ian Blackburn, John Colby, Mark Horner, Martin Reid, Paul Turley, Helmut Watson
by Dave Brueck, Stephen Tanner
Back to Top