English Deutsch Français 简体中文 繁體中文
Book123, Download eBooks for Free - Anytime! Submit your article

Categories

Share With Friends



Like Book123?! Give us +1

Archive by Date

Search Tag

Newest

Useful Links


ASP.NET 2.0 Data Access and Data-Binding

Posted on 2010-04-15




Name:ASP.NET 2.0 Data Access and Data-Binding
ASIN/ISBN:1890774359
   ASP.NET 2.0 Data Access and Data-Binding

Free Download Now     Free register and download UseNet downloader, then you can FREE Download from UseNet.

    Download without Limit " ASP.NET 2.0 Data Access and Data-Binding " from UseNet for FREE!


01 - ADO.NET 2.0 Introductory Video

This video discusses what ADO.NET 2.0 is at a very high level and why we need it. It discusses the important methods and objects required to work with data in both the disconnected and connected data access models.

02 - Configuring a Local Microsoft SQL Server Connection String

This video discusses how to create a connection to a Microsoft SQL 2005 Express database file using the Data Explorer in Visual Web Developer 2005 Express Edition. It discusses how to use this connection to generate the connection string information for us in the ConnectionStrings configuration section located in the web.config. Lastly, it discusses details about the parameters required in a connection string in order to create a successful database connection.

03 - Configuring a Microsoft Access Connection String

This video discusses how to create a connection to a Microsoft Access Database file using the Data Explorer in Visual Web Developer 2005 Express Edition. It discusses how to use this connection to generate the connection to the Access Database file with an Access DataSource Control. It also covers how to create a connection string manually and use that with some ADO.NET 2.0 code to populate a GridView control. Lastly, it discusses details about the parameters required in this connection string in order to create a successful database connection.

04 - Configuring a Remote Microsoft SQL Server Connection String

This video discusses how to create a connection to a Microsoft SQL 2005 Express database using the Data Explorer in Visual Web Developer 2005 Express Edition. It discusses how to use this connection to generate the connection string information for you in the ConnectionStrings configuration section located in the web.config� It talks about the parameters required in a connection string in this scenario in order to create a successful database connection and even shows you how to create a connection string using a .udl (universal DataSource locator) file for use in your application.

05 - Returning Tabular Data Using an SqlDataSource Control

This video covers how to bind tabular data to the GridView control using the SqlDataSource control. You will learn how to take this data displayed in the GridView and filter the data returned by using form posted values, filter expressions and control parameters in code.

06 - Returning Tabular Data Using an AccessDataSource Control

This video covers how to bind tabular data to the GridView control using the AccessDataSource control. You will learn how to take this data displayed in the GridView and filter the data returned with form posted values, filter expressions and control parameters in code.

07 - Using the SiteMapDataSource to Generate Navigation

This video covers how to use the SiteMapDataSource to generate navigational elements in your site. It talks about how to take advantage of the SiteMapDataSource to control the display of these elements and shows you how to use one SiteMapDataSource for multiple menus that might have a different display. You�ll also be shown you how to use the SiteMap class to set titles on your page so you can have a uniform title set to display in the browser title bar. Finally, you�ll learn how to use more than one sitemap in your site to gain more control over navigation.

08 - Binding XML Data to DataBound Controls Using the XmlDataSource

This video covers how to use the XmlDataSource to bind to DataBound controls such as the Treeview, DataList & DetailsView, to a custom XML file. It also discusses how to use some Xpath and Xslt to change how the XMLDataSource binds to and displays the XML file.

09 - Returning Tabular Data Using an ObjectDataSource

This video discusses how to bind tabular data to DataBound controls using the ObjectDataSource and a custom DataObject. It discusses what makes the DataObject work with the ObjectDataSource and how to configure the ObjectDataSource to retrieve data from the DataObject. Finally, it briefly talks about when you might want to use the ObjectDataSource in your applications.

10 - Filtering and Binding Tabular Data Using the ObjectDataSource

This video extends the previous video (ASP2DATA_09) on binding tabular data to DataBound controls using the ObjectDataSource and a custom DataObject by implementing Filtering with both a select parameter and a filter expression. It covers the extensions made to the DataObject in order to make the select method work with parameters as well as how to programmatically configure control parameters for use with the ObjectDataSource so that it can execute retrieval of data from the DataObject. Finally it covers how to set filtering on the ObjectDataSource with both a cached and un-cached DataSet.

11 - Performing CRUD (Create, Retrieve, Update, Delete) Operations Using the ObjectDataSource

This video extends the previous video (ASP2DATA_10) on binding and filtering tabular data to DataBound controls using the ObjectDataSource and a custom DataObject by implementing typical C.R.U.D or Create, Retrieve, Update, Delete operations on a GridView and a FormView. It discusses the necessary configurations required to be made to the ObjectDataSource to give us our desired functionality. Finally, it covers the extensions made to the DataObject in order to make these operations work with our DataBound controls.

12 - Performing CRUD Operations on Disconnected DataTables and Updating the Source

This video discusses how to populate a DataTable using a SqlDataAdapter. It discusses how to populate tables for use in a disconnected scenario and how to bind the data to databound controls. Finally it discusses how to save any changes made to the data in the DataTable or reject the changes completely.

13 - Using an ADO.NET 2.0 SqlDataAdapter to Fill DataSets

This video discusses how to populate a DataSet using an ADO.NET 2.0 SqlDataAdapter. It discusses how to populate multiple tables for use in a Disconnected DataSet and how to bind the data to databound controls. Finally it discusses how to save any changes made to the data in the data set or reject the changes completely.

14 - Loading XML Data Into DataSets and DataTables

This video discusses how to load XML data from an XML file into both DataTables and DataSets, the requirements for doing this with both objects, and how to save changes made to the data back to the source file.

15 - Using the SqlCommand Object to Retrieve Data (Part 1 of 2)

One of the most common issues surrounding development of database driven web sites is data access. Some of the most common questions that I see are �how do I update� or �how do I add new records?� The goal of the following demonstrations in this webform is to remove the mystery behind this functionality. This video discusses ADO.NET data access at a lower level. It will discuss the material that underlies most, if not all, of the .NET datasource controls methods for data access and manipulation. It discusses the SqlCommand Object and its various methods used to work with data. It also discusses standard ways to eliminate the �gotchas� when it comes to data access and making sure resources are closed when they are no longer needed.

16 - Using the SqlCommand Object to Retrieve Data (Part 2 of 2)

This video continues our discussion of the previous ADO.NET video by examining the remaining execute methods of the SqlCommand Object, and finally covers multiple active result set functionality that can be achieved with the SQL Server 2005 editions only. We first look at the ExecuteNonQuery method of the SqlCommand Object so we can see just how easy it is to perform inserts to a database. Then we show you how to use a SqlDataReader to populate a DataTable for binding to a gridview. Finally we discuss how to insert and retrieve xml data from your database, and close the video with our discussion of MARS.

17 - Using DataRelations in Untyped DataSets

This video covers how to use DataRelations in an Untyped DataSet to relate records between two DataTables. It shows you how to create and add the relationship object to the DataSet and why we need to do this with untyped datasets. Finally, it shows you how to locate all the child DataRows for a particular record selected in the primary DataTable.

18 - Using DataRelations in Typed DataSets

In this video we cover how to use DataRelations in a Typed DataSet to relate records between two DataTables. I show you how to create the typed DataSet and I show you how to locate all of the child DataRows for a particular record selected in the primary DataTable. I also discuss some of the differences between typed and untyped DataSets.

19 - Understanding and Using Transactions in ADO.NET 2.0

In this video we are going to talk about transactions, what they are, and how to use them in our code to support atomic operations for scenarios where your business logic might require an all or nothing approach with regards to data access. We will also briefly touch on the recommendation by microsoft on the types of transaction objects to use when implementing transactions in your application.

20 - Using Asynchronous SqlCommands

In this video we discuss how to execute Sql Commands using the SqlCommand object in an asycnchronous fashion so that you can improve the performance of long running queries or processes.

21 - Inserting binary data into a SQL Server 2005 Database

This video discusses how to access and store binary data into a database, using the fileUpload control and ADO.NET.

22 - Retrieving binary data from a SQL Server 2005 Database

This video is a continuation of Lesson 21 and details how to retrieve binary data from the database.

Home:

Buy Book at Lowest Price on Amazon

Password default: shytex.com

Rating:

2.5 out of 5 by

 
Download Links
  ServerStatus
  Direct Download Link 1Alive
  Direct Download Link 2Alive
  Download Link Part 01Alive
  Download Link Part 02Alive
  Download Link Part 03Alive
  Download Link Part 04Alive
  Download Link Part 05Alive
  Download Link Part 06Alive
  Download Link Part 07Alive
  Download Link Part 08Alive
  Download Link Part 09Alive


Buy This Book at Best Price >>

Like this article?! Give us +1:

Related Articles


Technical Data Binding with Windows Forms 2.0 : Programming Smart Client Data Applications

Technical Data Binding with Windows Forms 2.0 : Programming Smart Client Data Applications

Author: Brian NoyesPublisher: Addison-Wesley ProfessionalPublish Date: 12 January, 2006ISBN: 032126892X

Technical Data Binding with Windows Forms 2.0 : Programming Smart Client Data Applications with .NET (Microsoft Net Development Series)

Technical Data Binding with Windows Forms 2.0 : Programming Smart Client Data Applications with .NET (Microsoft Net Development Series)

Technical Data Binding with Windows Forms 2 0 Programming Smart Client Data Applications with dot NET Jan 2006

Technical Data Binding with Windows Forms 2 0 Programming Smart Client Data Applications with dot NET Jan 2006

Data Binding with Windows Forms 2.0: Programming Smart Client Data Applications with .NET

Data Binding with Windows Forms 2.0: Programming Smart Client Data Applications with .NET

Data Binding with Windows Forms 2.0: Programming Smart Client Data Applications with .NETAddison-Wesley Professional | ISBN: 032126892X | January 12, 2006 | 736 pages | CHMData binding is the most important part of many business application ...

Addison Wesley Data Binding with Windows Forms 2.0 Programming Smart Client Data

Addison Wesley Data Binding with Windows Forms 2.0 Programming Smart Client Data

RELEASE iNFOTITLE : Data Binding with Windows Forms 2.0 : Programming SmartClient Data Applications with .NET (Microsoft Net DevelopmentSeries)AUTHOR : Brian NoyesPUBLISHER : Addison-Wesley ProfessionalISBN : 032126892XMAKER : BBLEDITION : ...

Technical Data Binding with Windows Forms 2.0: Programming Smart Client Data Applications with .NET (Microsoft .NET Development Series)

Technical Data Binding with Windows Forms 2.0: Programming Smart Client Data Applications with .NET (Microsoft .NET Development Series)

Author: Brian NoyesPublisher: Addison-Wesley Professional (2006)Binding: Paperback, 736 pagespricer: $54.99ISBN-10: 032126892Xeditorialreviews"Brian Noyes' writing style easily captures your attention as he elaborates on all aspects of data ...

Share this page with your friends now!
Text link
Forum (BBCode)
Website (HTML)
Tags:
Data   Access  
 

DISCLAIMER:

This site does not store ASP.NET 2.0 Data Access and Data-Binding on its server. We only index and link to ASP.NET 2.0 Data Access and Data-Binding provided by other sites. Please contact the content providers to delete ASP.NET 2.0 Data Access and Data-Binding if any and email us, we'll remove relevant links or contents immediately.

Comments (0) All

Verify: Verify

    Sign In   Not yet a member?

Sign In | Not yet a member?