+ All Categories
Home > Documents > Creating and Programming a Web Application

Creating and Programming a Web Application

Date post: 07-Apr-2018
Category:
Upload: omprakash-mendu
View: 222 times
Download: 0 times
Share this document with a friend

of 24

Transcript
  • 8/3/2019 Creating and Programming a Web Application

    1/24

    1) Creating and programming a Web application (12%)

    1. Create and configure a Web application.

    o Create a new Web application.

    o Add Web Forms pages to a Web application.

    2. Add and configure Web server controls.

    o Configure Web server control properties by using the Microsoft VisualStudio Property Editor.

    o Specify whether events of a control cause a Web Form to post to the

    server.o Configure a control to receive postback events.

    o Use the Panel Web server control to arrange controls in groups on a page.

    o Create a container for a group of View controls by using the MultiView

    Web server control.

    o Access controls in Web Forms pages when working with naming

    containers and child controls.o Create HTML server controls in the designer.

    o Set HTML server control properties programmatically.o Use HTML server controls to programmatically access HTML tags.

    o Create HTML controls as elements in an HTML document.

    o Use the Label Web server control to display customized text on a Web

    page.

    o Display a hyperlink style button on a Web Form by using the LinkButton

    Web server control.

    o Display lists of information by using controls that derive from the

    ListControl class.

    o Create a Web Form with static text by using the Literal Web server

    control.

    o Implement pagination for controls on a page by using the Pager Webserver control.

    o Use the AdRotator Web server control to manage banners and pop-up

    windows.

    o Use the Button Web server control to send a command to the server when

    a button is clicked.o Display a calendar on a Web page by using the Calendar Web server

    control.

    o Implement the CheckBox Web server control.

    o Implement the FileUpload Web server control.

    o Create and manipulate links on a Web Form by using the HyperLink Web

    server control.o Display an image on a Web Form by using the Image Web server control.

    o Implement a button on a Web Form by using the ImageButton Web server

    control.

    o Define hotspot regions within an image by using the ImageMap Web

    server control.

    o Use the View Web server control to create a Web application.

  • 8/3/2019 Creating and Programming a Web Application

    2/24

    o Create a mutually exclusive set of choices by using the RadioButton Web

    server control.

    o Construct a table by using the Table, TableRow, and TableCell Web

    server controls.

    o Enable users to type information into a Web Form by using the TextBox

    Web server control.o Create a wizard by using the Wizard Web server control to collect data

    through multiple steps of a process.

    o Use the XML Web server control to create XML data at the location of the

    control.

    o Customize the appearance of Web server controls by using Web control

    templates.o Programmatically edit settings in a Web site's configuration file.

    o Dynamically add Web server controls to a Web Forms page.

    o Add Web server controls to a Web Form.

    o Configure the properties of Web server controls programmatically.

    3. Create event handlers for pages and controls.o Create event handlers for a page or control at design time.

    o Respond to application and session events.

    4. Manage state and application data.

    o Manage state of an application by using client-based state management

    options.

    o Manage state of an application by using server-based state management

    options.o Maintain state of an application by using database technology.

    5. Implement globalization and accessibility.

    6. Implement site navigation and input validation.

    o Use the SiteMap Web server control to display a representation of a Website's navigation structure.

    o Use validation controls to perform Web Forms validation.

    o Validate against values in a database for server controls by using a

    CustomValidator control.

    o Create a CustomValidator control and tie it to a custom function.

    o Test programmatically whether a user's input passed validation before

    running code.

    o Specify the location of a validation error message for server controls.

    o Format validation error messages for server controls.

    o Specify the layout for in-place messages on server controls.

    o Disable validation for server controls.o Display custom error messages for server controls.

    o Validate server controls programmatically.

    7. Write an ASP.NET handler to generate images dynamically for display on a Web

    page.

    8. Configure settings for a Web application.

    o Configure system-wide settings in the Machine.config file.

    o Configure settings for a Web application in the Web.config file.

  • 8/3/2019 Creating and Programming a Web Application

    3/24

    o Manage a Web application's configuration by using the Web Site

    Administration Tool.

    9. Program a Web application.o Programmatically access the header of a Web page.

    o Implement cross-page postbacks.

    o Assign focus to a control on a page when the page is displayed.o Avoid performing unnecessary processing on a round trip by using a

    page's IsPostBack property.

    o Access encapsulated page and application context.

    o Avoid unnecessary client-side redirection by using the

    HttpServerUtility.Transfer method.

    o Avoid round trips by using client-side scripts.

    o Use a page's Async attribute to create a page that has built-in

    asynchronous capabilities.

    o Convert HTML server controls to HTML elements.

    o Redirect users to another Web page by using a server-side method.

    o Detect browser types in Web Forms.o Ascertain the cause of an unhandled exception at the page level.

    2) Integrating data in a Web application by using ADO.NET, XML, and data-bound

    controls (20%)

    1. Implement data-bound controls.

    o Use tabular data source controls to return tabular data.

    o Use hierarchical data source controls to display hierarchical data.

    o Display data by using simple data-bound controls.

    o Display data by using composite data-bound controls.

    o Display data by using hierarchical data-bound controls.o Use the FormView control to display the values of a single table record

    from a data source.

    2. Manage connections and transactions of databases.

    o Configure a connection to a database graphically by using the Connection

    Wizard.

    o Configure a connection by using Server Explorer.

    o Configure a connection to a database by using the connection class.

    o Connect to a database by using specific database connection objects.

    o Enumerate through instances of Microsoft SQL Server by using the

    DbProviderFactories.GetFactoryClasses method.o Open a connection by using the Open method of a connection object.o Close a connection by using the connection object.

    o Secure a connection to protect access to your data source.

    o Create a connection designed for reuse in a connection pool.

    o Control connection pooling by configuring ConnectionString values based

    on database type.o Use connection events to detect database information.

    o Handle connection exceptions when connecting to a database.

  • 8/3/2019 Creating and Programming a Web Application

    4/24

    o Perform transactions by using the ADO.NET Transaction object.

    3. Create, delete, and edit data in a connected environment.

    o Retrieve data by using a DataReader object.

    o Build SQL commands visually in Server Explorer.

    o Build SQL commands in code.

    o Create parameters for a command object.o Perform database operations by using a command object.

    o Retrieve data from a database by using a command object.

    o Perform asynchronous operations by using a command object.

    o Perform bulk copy operations to copy data to a SQL Server computer.

    o Store and retrieve binary large object (BLOB) data types in a database.

    4. Create, delete, and edit data in a disconnected environment.

    o Resolve conflicts between a DataSet and a database by using the

    DataAdapter.o Respond to changes made to data at the data source by using DataAdapter

    events.

    o Perform batch operations by using DataAdapters.o Create an instance of the DataSet class programmatically.

    o Create a DataSet graphically.

    o Create a DataSet programmatically.

    o Add a DataTable to a DataSet.

    o Add a relationship between tables.

    o Navigate a relationship between tables.

    o Merge DataSet contents.

    o Copy DataSet contents.

    o Create a strongly typed DataSet.

    o Create DataTables.

    o Manage data within a DataTable.o Create and use DataViews.

    o Represent data in a DataSet by using XML.

    o Access an ADO Recordset or Record by using the OleDbDataAdapter

    object.

    o Generate DataAdapter commands automatically by using the

    CommandBuilder object.

    o Generate DataAdapter commands programmatically.

    o Populate a DataSet by using a DataAdapter.

    o Update a database by using a DataAdapter.

    5. Manage XML data with the XML Document Object Model (DOM).

    o Read XML data into the DOM by using the Load method.

    o Modify an XML document by adding and removing nodes.

    o Modify nodes in an XML document.

    o Write data in XML format from the DOM.

    o Work with nodes in the XML DOM by using XmlNamedNodeMap and

    the XmlNodeList.

    o Handle DOM events.

  • 8/3/2019 Creating and Programming a Web Application

    5/24

    o Modify XML declaration.

    6. Read and write XML data by using the XmlReader and XmlWriter.

    o Read XML data by using the XmlReader.

    o Read all XML element and attribute content.

    o Read specific element and attribute content.

    o Read XML data by using the XmlTextReader class.o Read node trees by using the XmlNodeReader.

    o Validate XML data by using the XmlValidatingReader.

    o Write XML data by using the XmlWriter.

    3) Creating custom Web controls (14%)

    1. Create a composite Web application control.

    o Create a user control.

    o Convert a Web Forms page to a user control.

    o Include a user control in a Web Forms page.

    o Manipulate user control properties.o Handle user control events within the user control code-declaration block

    or code-behind file.

    o Create instances of user controls programmatically.

    o Develop user controls in a code-behind file.

    o Create a templated user control.

    2. Create a custom Web control that inherits from the WebControl class.o Create a custom Web control.

    o Add a custom Web control to the Toolbox.

    o Individualize a custom Web control.

    o Create a custom designer for a custom Web control.

    3. Create a composite server control.o Create a base class for composite controls.

    o Create a composite control.

    4. Develop a templated control.

    o Create a templated control.

    o Develop a templated data-bound control.

    4) Tracing, configuring, and deploying applications (14%)

    1. Use a Web setup project to deploy a Web application to a target server.

    o Create a Web setup project.

    o Configure deployment properties for a Web setup project.o Install a Web application on a target server.

    2. Copy a Web application to a target server by using the Copy Web tool.3. Precompile a Web application by using the Publish Web utility.

    4. Optimize and troubleshoot a Web application.

    o Customize event-level analysis by using the ASP.NET health-monitoring

    API.

    o Use performance counters to track the execution of an application.

  • 8/3/2019 Creating and Programming a Web Application

    6/24

    o Troubleshoot a Web application by using ASP.NET tracing.

    o Optimize performance by using the ASP.NET Cache object.

    5) Customizing and personalizing a Web application (14%)

    1. Implement a consistent page design by using master pages.o Change master pages dynamically.

    o Create a master page.

    o Add a ContentPlaceHolder control to a master page.

    o Specify default content for a ContentPlaceHolder.

    o Reference external resources in a master page.

    o Define the content of a particular page in a content page.

    o Create a content page.

    o Add content to a content page.

    o Reference a master page member from a content page.

    o Handle events when using master pages.

    o Create a nested master page.2. Customize a Web page by using themes and user profiles.

    o Apply a theme declaratively.

    o Apply a theme programmatically.

    o Apply a user-selected theme programmatically.

    o Define custom themes.

    o Define the appearance of a control by using skins.

    o Enable users to personalize an application by using Web Parts.

    o Track and store user-specific information by using user profiles.

    o Personalize a Web page by dynamically adding or removing child controls

    in a Placeholder control at run time.

    3. Implement Web Parts in a Web application.o Track and coordinate all Web Parts controls on a page by adding a

    WebPartManager control.

    o Connect Web Parts to each other by using connection objects.

    o Divide a page that uses Web Parts into zones by using WebPartZones.

    o Present a list of available Web Parts controls to users by using CatalogPart

    controls.

    o Enable users to edit and personalize Web Parts controls on a page by using

    EditorPart controls.

    6) Implementing authentication and authorization (17%)

    1. Establish a user's identity by using forms authentication.

    o Configure forms authentication for a Web application by using a

    configuration file.

    o Enable cookieless forms authentication by setting the cookieless attribute.

    o Use membership APIs and the Membership class to manage users.

    o Enable anonymous identification.

    2. Use authorization to establish the rights of an authenticated user.

  • 8/3/2019 Creating and Programming a Web Application

    7/24

    o Manage roles in the Web Site Administration Tool.

    o Ascertain whether a specific user is in role.

    o Get the roles for a specific user by using the Roles object or the User

    object.

    o Store role information in a cookie.

    o Restrict access to files by using file authorization.o Restrict access to portions of an application by using URL authorization.

    3. Implement Microsoft Windows authentication and impersonation.

    o Establish a user's identity by using Windows authentication.

    o Use impersonation to control access to resources.

    4. Use login controls to control access to a Web application.

    o Use the Login Web server control.

    o Use the LoginView Web server control to view a user's login status.

    o Use the PasswordRecovery Web server control to allow a user to recover a

    password.

    o Use the LoginStatus Web server control to display either a login or logout

    link.o Use the LoginName Web server control to display a user's login name on a

    Web page.

    o Use the CreateUserWizard Web server control as a UI for creating new

    Web application user accounts.

    o Use the ChangePassword Web server control to allow users to change

    their passwords.

    o Specify the membership provider used for logging on.

    o Configure a mail server so that login controls can be used to send e-mail

    messages to users.

    7) Creating ASP.NET mobile Web applications (8%)

    Create a mobile Web application project.

    Use device-specific rendering to display controls on a variety of devices.

    Use adaptive rendering to modify the appearance of Web server controls.

    Use the mobile Web controls to display content on a device.

    Monday 1 March 2010

    MCTS .NET 2.0 Web-based Client Development 70-528 Objectives List

    Part 4

    http://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.html
  • 8/3/2019 Creating and Programming a Web Application

    8/24

    This is the fourth post (first, second, third) in another collection of posts that have links to

    the different objectives covered in the 70-528 exam. There is also a series on ASP.NET

    3.5 exam 70-562 (here)

    Tracing, configuring, and deploying applications

    Use a Web setup project to deploy a Web application to a target server.

    o Create a Web setup project.

    Web Pages and Projects What's New in Web Projects

    o Configure deployment properties for a Web setup project.

    Build, Configuration Properties, Deployment Project PropertiesDialog Box

    o Install a Web application on a target server.

    Copy a Web application to a target server by using the Copy Web tool.

    Precompile a Web application by using the Publish Web utility.

    Optimize and troubleshoot a Web application.o Customize event-level analysis by using the ASP.NET health-monitoring

    API.

    ASP.NET Health Monitoring Overview

    Configuring ASP.NET Health Monitoring

    Buffering ASP.NET Health Monitoring Events Using WMI to Deliver ASP.NET Health Monitoring Events

    Walkthrough: Listening for WMI Events in ASP.NET Health

    Monitoring Extending ASP.NET Health Monitoring

    Implementing Custom ASP.NET Health Monitoring Events and

    Providers Securing ASP.NET Health Monitoring

    System.Web.Management

    System.Management

    System.Management.Instrumentation HealthMonitoringSection

    healthMonitoring Element (ASP.NET Settings Schema)

    o Use performance counters to track the execution of an application.

    How to: Create Performance Counter Categories,Category and

    Counter Management

    How to: Create Custom Performance Counters.

    How to: View the ASP.NET Performance Counters Available onYour Computer

    Developing High-Performance ASP.NET Applications

    o Troubleshoot a Web application by using ASP.NET tracing.

    ASP.NET Tracing Overview

    Application-Level ASP.NET Tracing Overview How to: Enable Tracing for an ASP.NET Page

    How to: Enable Tracing for an ASP.NET Application

    http://www.certsandprogs.com/2010/01/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/search/label/70-562http://msdn.microsoft.com/en-us/library/928s83k9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/928s83k9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/k8kzx145(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/k8kzx145(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/118w0kzy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/f7fb46ye(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/4tbc1ew3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/4tbc1ew3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1befw7hy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1befw7hy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0h2t5eye(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0h2t5eye(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xay0wxbf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xay0wxbf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1y1404zt(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1y1404zt(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178643(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178643(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms998306.aspxhttp://msdn.microsoft.com/en-us/library/ms998306.aspxhttp://msdn.microsoft.com/en-us/library/ms178703(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178704(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178708(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178709(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178713(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178713(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228095(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178716(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178716(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228045(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.management(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.management(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.management.instrumentation(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.configuration.healthmonitoringsection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2fwh2ss9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fxk122b4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fxk122b4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/y84hetex(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ty9fywea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ty9fywea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ty9fywea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5e3s61wf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5e3s61wf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xhcx5a20(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xhcx5a20(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5dws599a(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/y13fw6we(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/y13fw6we(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sfbfw58f(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1y89ed7z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/94c55d08(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0x5wc973(VS.80).aspxhttp://www.certsandprogs.com/2010/01/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/search/label/70-562http://msdn.microsoft.com/en-us/library/928s83k9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/k8kzx145(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/118w0kzy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/f7fb46ye(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/4tbc1ew3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1befw7hy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1befw7hy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0h2t5eye(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xay0wxbf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1y1404zt(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178643(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms998306.aspxhttp://msdn.microsoft.com/en-us/library/ms998306.aspxhttp://msdn.microsoft.com/en-us/library/ms178703(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178704(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178708(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178709(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178713(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178713(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228095(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178716(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178716(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228045(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.management(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.management(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.management.instrumentation(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.configuration.healthmonitoringsection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2fwh2ss9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fxk122b4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/y84hetex(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ty9fywea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ty9fywea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5e3s61wf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xhcx5a20(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xhcx5a20(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5dws599a(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/y13fw6we(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sfbfw58f(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1y89ed7z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/94c55d08(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0x5wc973(VS.80).aspx
  • 8/3/2019 Creating and Programming a Web Application

    9/24

    Writing Custom ASP.NET Trace Messages

    How to: View ASP.NET Trace Information with the Trace Viewer

    Reading ASP.NET Trace Information Walkthrough: Integrating ASP.NET Tracing with

    System.Diagnostics Tracing

    System.Web.TraceContexto Optimize performance by using the ASP.NET Cache object.

    ASP.NET Caching Overview

    What's New in ASP.NET Caching Caching ASP.NET Pages

    Caching Application Data

    Caching Multiple Versions of a Page

    Caching Portions of an ASP.NET Page Dynamically Updating Portions of a Cached Page

    Caching in ASP.NET with the SqlCacheDependency Class

    Cache Configuration in ASP.NET

    System.Web.Caching HttpCachePolicy

    HttpCacheability @ OutputCache

    Caching Application Data

    How to: Add Items to the Cache. How to: Retrieve Values of Cached Items.

    CacheItemPriority

    AggregateCacheDependency

    How to: Cache Page Output with File Dependencies

    You can also find some information on preparing for your examshereandhere, in theactual exam for70-528. Also errata for the MS Press training kit

    Email this Technorati Links Save to del.icio.us Add to del.icio.usDigg This!

    outside.in: geotag this story Share on Facebook Discuss on Newsvine Stumble It! Add to Mixx!

    Posted by Niall Merrigan at 11:15

    0 comments

    Labels: 2008,70-528,ASP.NET, Certification,MCPD,MCTS, Tips and Tricks

    Sunday 21 February 2010

    MCTS .NET 2.0 Web-based Client Development 70-528 Objectives List

    Part 3

    This is the third post (first, second) in another collection of posts that have links to thedifferent objectives covered in the 70-528 exam. There is also a series on ASP.NET 3.5

    exam 70-562 (here)

    http://msdn.microsoft.com/en-us/library/z48bew18(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wwh16c6c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/kthye016(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/b0ectfxd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/b0ectfxd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.tracecontext(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xsbfdd8c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xsbfdd8c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178597(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178603(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/06bh14hk(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6hbbsfk6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xadzbzd6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/h30h475z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227429(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178604(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178606(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.caching(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.httpcachepolicy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.httpcacheability(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hdxfb6cy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6hbbsfk6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/18c1wd61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/18c1wd61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xhy3h9f9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.caching.cacheitempriority(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.caching.aggregatecachedependency(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/67z4z916(VS.80).aspxhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/11/sitting-your-ms-exam.htmlhttp://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-528&Locale=en-us#tab1http://www.certsandprogs.com/2009/10/ms-press-training-kit-errata-update.htmlhttp://www.microsoft.com/learning/en/us/Book.aspx?ID=9982&locale=en-ushttp://feedburner.google.com/fb/a/emailFlare?itemTitle=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204&uri=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.htmlhttp://technorati.com/search/http:/www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttp://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204http://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204http://digg.com/submit?phase=2&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://digg.com/submit?phase=2&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://outside.in/stories/submit?excerpt=&link=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&source=feedflare&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.htmlhttp://www.newsvine.com/_tools/seed?popoff=0&feedflare=1&u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&h=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204&t=MCTS%2CMCPDhttp://www.stumbleupon.com/submit?url=http://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204http://www.stumbleupon.com/submit?url=http://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttps://www.blogger.com/comment.g?blogID=25905727344058472&postID=8096433072057250070https://www.blogger.com/comment.g?blogID=25905727344058472&postID=8096433072057250070http://www.certsandprogs.com/search/label/2008http://www.certsandprogs.com/search/label/2008http://www.certsandprogs.com/search/label/70-528http://www.certsandprogs.com/search/label/70-528http://www.certsandprogs.com/search/label/ASP.NEThttp://www.certsandprogs.com/search/label/Certificationhttp://www.certsandprogs.com/search/label/Certificationhttp://www.certsandprogs.com/search/label/MCPDhttp://www.certsandprogs.com/search/label/MCPDhttp://www.certsandprogs.com/search/label/MCTShttp://www.certsandprogs.com/search/label/Tips%20and%20Trickshttp://www.certsandprogs.com/search/label/Tips%20and%20Trickshttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/2010/01/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/search/label/70-562http://www.blogger.com/email-post.g?blogID=25905727344058472&postID=8096433072057250070http://msdn.microsoft.com/en-us/library/z48bew18(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wwh16c6c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/kthye016(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/b0ectfxd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/b0ectfxd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.tracecontext(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xsbfdd8c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178597(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178603(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/06bh14hk(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6hbbsfk6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xadzbzd6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/h30h475z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227429(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178604(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178606(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.caching(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.httpcachepolicy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.httpcacheability(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hdxfb6cy(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6hbbsfk6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/18c1wd61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/xhy3h9f9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.caching.cacheitempriority(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.caching.aggregatecachedependency(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/67z4z916(VS.80).aspxhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/11/sitting-your-ms-exam.htmlhttp://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-528&Locale=en-us#tab1http://www.certsandprogs.com/2009/10/ms-press-training-kit-errata-update.htmlhttp://www.microsoft.com/learning/en/us/Book.aspx?ID=9982&locale=en-ushttp://feedburner.google.com/fb/a/emailFlare?itemTitle=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204&uri=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.htmlhttp://technorati.com/search/http:/www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttp://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204http://digg.com/submit?phase=2&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://outside.in/stories/submit?excerpt=&link=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&source=feedflare&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+4http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.htmlhttp://www.newsvine.com/_tools/seed?popoff=0&feedflare=1&u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.html&h=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204&t=MCTS%2CMCPDhttp://www.stumbleupon.com/submit?url=http://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%204http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F03%2Fmcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/03/mcts-net-20-web-based-client.htmlhttps://www.blogger.com/comment.g?blogID=25905727344058472&postID=8096433072057250070http://www.certsandprogs.com/search/label/2008http://www.certsandprogs.com/search/label/70-528http://www.certsandprogs.com/search/label/ASP.NEThttp://www.certsandprogs.com/search/label/Certificationhttp://www.certsandprogs.com/search/label/MCPDhttp://www.certsandprogs.com/search/label/MCTShttp://www.certsandprogs.com/search/label/Tips%20and%20Trickshttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/2010/01/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/search/label/70-562
  • 8/3/2019 Creating and Programming a Web Application

    10/24

    Creating custom Web controls

    Create a composite Web application control.

    o Create a user control

    How to: Create an ASP.NET User Control.

    o Convert a Web Forms page to a user control.o Include a user control in a Web Forms page.

    How to: Include a User Control in an ASP.NET Web Page

    o Manipulate user control properties.

    o Handle user control events within the user control code-declaration block

    or code-behind file.

    o Create instances of user controls programmatically.

    o Develop user controls in a code-behind file.

    o Create a templated user control.

    PlaceHolder

    ITemplate.

    INamingContainer TemplateContainerAttribute

    Create a custom Web control that inherits from theWebControl class.

    o Create a custom Web control.

    o Add a custom Web control to the Toolbox.

    How to: Use Custom ASP.NET Server Controls in Visual Studio

    o Individualize a custom Web control.

    o Create a custom designer for a custom Web control.

    Create a composite server control.

    o Create a base class for composite controls.

    CreateChildControls

    EnsureChildControlso Create a composite control.

    A Crash Course on ASP.NET Control Development: Building

    Composite Controls

    Develop a templated control.o Create a templated control.

    o Develop a templated data-bound control.

    You can also find some information on preparing for your examshereandhere, in theactual exam for70-528. Also errata for the MS Press training kit

    Email this Technorati Links Save to del.icio.us Add to del.icio.usDigg This! outside.in: geotag this story Share on Facebook Discuss on Newsvine Stumble It!

    Add to Mixx!

    Posted by Niall Merrigan at 12:390 comments

    Labels: 2008,70-528,ASP.NET, Certification,MCTS, Tips and Tricks,Visual Studio

    http://msdn.microsoft.com/en-us/library/fb3w5b53(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fb3w5b53(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wt3k2fyw(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2x6sx01c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2x6sx01c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5d0t5fak(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5d0t5fak(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sbz9etab(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wkzf914z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wkzf914z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wkzf914z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/c0az2h86(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/c0az2h86(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/36574bf6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/36574bf6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.placeholder(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.itemplate(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.itemplate(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.inamingcontainer(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.templatecontainerattribute(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webcontrol(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yhzc935f(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms165355(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms165355(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366537(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/54dc18sa(en-us,VS.80).aspxhttp://msdn.microsoft.com/en-us/library/54dc18sa(en-us,VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12yydcke(en-us,VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12yydcke(en-us,VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.compositecontrol(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.compositecontrol(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.control.createchildcontrols(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.control.ensurechildcontrols(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/3257x3ea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/3257x3ea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/aa479016.aspxhttp://msdn.microsoft.com/en-us/library/aa479016.aspxhttp://msdn.microsoft.com/en-us/library/ms178657(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178657(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366539(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366539(VS.80).aspxhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/11/sitting-your-ms-exam.htmlhttp://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-528&Locale=en-us#tab1http://www.certsandprogs.com/2009/10/ms-press-training-kit-errata-update.htmlhttp://www.microsoft.com/learning/en/us/Book.aspx?ID=9982&locale=en-ushttp://feedburner.google.com/fb/a/emailFlare?itemTitle=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203&uri=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.htmlhttp://technorati.com/search/http:/www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203http://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203http://digg.com/submit?phase=2&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://digg.com/submit?phase=2&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://outside.in/stories/submit?excerpt=&link=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&source=feedflare&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.htmlhttp://www.newsvine.com/_tools/seed?popoff=0&feedflare=1&u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&h=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203&t=MCTS%2CASP.NEThttp://www.stumbleupon.com/submit?url=http://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203http://www.stumbleupon.com/submit?url=http://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttps://www.blogger.com/comment.g?blogID=25905727344058472&postID=56489260124667649https://www.blogger.com/comment.g?blogID=25905727344058472&postID=56489260124667649http://www.certsandprogs.com/search/label/2008http://www.certsandprogs.com/search/label/2008http://www.certsandprogs.com/search/label/70-528http://www.certsandprogs.com/search/label/70-528http://www.certsandprogs.com/search/label/ASP.NEThttp://www.certsandprogs.com/search/label/Certificationhttp://www.certsandprogs.com/search/label/Certificationhttp://www.certsandprogs.com/search/label/MCTShttp://www.certsandprogs.com/search/label/Tips%20and%20Trickshttp://www.certsandprogs.com/search/label/Tips%20and%20Trickshttp://www.certsandprogs.com/search/label/Visual%20Studiohttp://www.blogger.com/email-post.g?blogID=25905727344058472&postID=56489260124667649http://msdn.microsoft.com/en-us/library/fb3w5b53(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wt3k2fyw(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2x6sx01c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5d0t5fak(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sbz9etab(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wkzf914z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wkzf914z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/c0az2h86(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/26db8ysc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/36574bf6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.placeholder(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.itemplate(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.inamingcontainer(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.templatecontainerattribute(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.webcontrol(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yhzc935f(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms165355(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366537(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/54dc18sa(en-us,VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12yydcke(en-us,VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.compositecontrol(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.control.createchildcontrols(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.control.ensurechildcontrols(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/3257x3ea(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/aa479016.aspxhttp://msdn.microsoft.com/en-us/library/aa479016.aspxhttp://msdn.microsoft.com/en-us/library/ms178657(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366539(VS.80).aspxhttp://www.certsandprogs.com/2008/11/preparing-for-your-ms-exams.htmlhttp://www.certsandprogs.com/2008/12/exam-tips-for-70-528aspnet-web.html#axzz0dFySOqLehttp://www.certsandprogs.com/2008/11/sitting-your-ms-exam.htmlhttp://www.microsoft.com/learning/en/us/Exam.aspx?ID=70-528&Locale=en-us#tab1http://www.certsandprogs.com/2009/10/ms-press-training-kit-errata-update.htmlhttp://www.microsoft.com/learning/en/us/Book.aspx?ID=9982&locale=en-ushttp://feedburner.google.com/fb/a/emailFlare?itemTitle=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203&uri=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.htmlhttp://technorati.com/search/http:/www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttp://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://del.icio.us/post?v=4&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203http://digg.com/submit?phase=2&partner=fb&url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://outside.in/stories/submit?excerpt=&link=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&source=feedflare&title=MCTS+.NET+2.0+Web-based+Client+Development+%E2%80%93+70-528+%E2%80%93+Objectives+List+Part+3http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.htmlhttp://www.newsvine.com/_tools/seed?popoff=0&feedflare=1&u=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.html&h=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203&t=MCTS%2CASP.NEThttp://www.stumbleupon.com/submit?url=http://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.html&title=MCTS%20.NET%202.0%20Web-based%20Client%20Development%20%E2%80%93%2070-528%20%E2%80%93%20Objectives%20List%20Part%203http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.certsandprogs.com%2F2010%2F02%2Fmcts-net-20-web-based-client_21.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client_21.htmlhttps://www.blogger.com/comment.g?blogID=25905727344058472&postID=56489260124667649http://www.certsandprogs.com/search/label/2008http://www.certsandprogs.com/search/label/70-528http://www.certsandprogs.com/search/label/ASP.NEThttp://www.certsandprogs.com/search/label/Certificationhttp://www.certsandprogs.com/search/label/MCTShttp://www.certsandprogs.com/search/label/Tips%20and%20Trickshttp://www.certsandprogs.com/search/label/Visual%20Studio
  • 8/3/2019 Creating and Programming a Web Application

    11/24

    Wednesday 17 February 2010

    MCTS .NET 2.0 Web-based Client Development 70-528 Objectives List

    Part 2

    This is the second post (first) in another collection of posts that have links to the different

    objectives covered in the 70-528 exam. There is also a series on ASP.NET 3.5 exam 70-

    562 (here)

    Integrating data in a Web application by using ADO.NET, XML, and data-bound

    controls

    Implement data-bound controls.

    o Use tabular data source controls to return tabular data.

    ObjectDataSource

    ObjectDataSource Control Overview

    Using Parameters with the ObjectDataSource Control

    SqlDataSource SqlDataSource Web Server Control Overview

    How to: Connect to a SQL Server Database Using the

    SqlDataSource Control How to: Connect to an Access Database Using the SqlDataSource

    Control

    How to: Connect to an ODBC Database Using the SqlDataSourceControl

    How to: Connect to an Oracle Database Using the SqlDataSource

    Control AccessDataSource Retrieving Data Using the AccessDataSource Web Server Control

    XmlDataSource

    XmlDataSource Control Overview Binding a Tabular Control to the XmlDataSource Control

    o Use hierarchical data source controls to display hierarchical data.

    XmlDataSource XmlDataSource Control Overview

    SiteMapDataSource

    SiteMapDataSource Web Server Control Overviewo Display data by using simple data-bound controls.

    o Display data by using composite data-bound controls.

    GridView GridView Web Server Control Overview

    Comparing the GridView and DataGrid Web Server Controls

    Sorting Data in a GridView Web Server Control Paging in a GridView Web Server Control

    Modifying Data in a GridView Web Server Control

    GridView Web Server Control Events

    http://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/01/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/search/label/70-562http://msdn.microsoft.com/en-us/library/ms227679(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227679(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.objectdatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/9a4kyhcx(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/57hkzhy5(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/dz12d98w(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228094(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228094(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hktw939c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hktw939c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35c54x95(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35c54x95(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/92ceczx1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/92ceczx1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.accessdatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/8e5545e1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xmldatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/494y92bs(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228087(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227437(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227437(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xmldatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/494y92bs(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sitemapdatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227441(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228089(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228089(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228214(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228214(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2s019wc0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/05yye6k9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hwf94875(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5aw1xfh3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/c4245bb4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/h4f8ekch(VS.80).aspxhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/02/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/2010/01/mcts-net-20-web-based-client.htmlhttp://www.certsandprogs.com/search/label/70-562http://msdn.microsoft.com/en-us/library/ms227679(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.objectdatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/9a4kyhcx(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/57hkzhy5(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sqldatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/dz12d98w(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228094(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228094(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hktw939c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hktw939c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35c54x95(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35c54x95(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/92ceczx1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/92ceczx1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.accessdatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/8e5545e1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xmldatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/494y92bs(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228087(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227437(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xmldatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/494y92bs(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sitemapdatasource(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227441(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228089(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228214(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2s019wc0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/05yye6k9(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hwf94875(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/5aw1xfh3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/c4245bb4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/h4f8ekch(VS.80).aspx
  • 8/3/2019 Creating and Programming a Web Application

    12/24

    Creating a Custom Column in a GridView Web Server Control

    How to: Set GridView Web Server Control Column Width

    Dynamically DetailsView

    DetailsView Web Server Control Overview

    Paging in a DetailsView Web Server Control Modifying Data Using a DetailsView Web Server Control

    Creating a Custom Row in a DetailsView Web Server Control

    DetailsView Web Server Control Events FormView

    FormView Web Server Control Overview

    Creating Templates for the FormView Web Server Control

    Paging in a FormView Web Server Control Modifying Data Using a FormView Web Server Control

    FormView Web Server Control Events

    Repeater

    Repeater Web Server Control Overview How to: Add a Repeater Control to a Web Forms Page

    DataList DataList Web Server Control Overview

    How to: Add DataList Controls to an ASP.NET Web Page

    How to: Specify Flow or Table Format in DataList Web Server

    Controls How to: Specify Horizontal or Vertical Layout in DataList Web

    Server Controls

    How to: Allow Users to Select Items in DataList Web ServerControls

    How to: Allow Users to Edit Items in DataList Web Server

    Controls How to: Allow Users to Delete Items in DataList Web Server

    Controls

    How to: Respond to Button Events in DataList, Repeater, orGridView Items

    How to: Customize DataList Items at Run Time

    How to: Customize Items Dynamically in the DataList Web Server

    Control How to: Create Templates Dynamically in DataList Web Server

    Controls

    o Display data by using hierarchical data-bound controls.

    Menu

    Menu Web Server Control

    SiteMapPath SiteMapPath Web Server Control Overview

    How to: Customize the Appearance of SiteMapPath Web Server

    Controls

    http://msdn.microsoft.com/en-us/library/ms228046(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178296(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178296(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.detailsview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/s3w1w7t4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227442(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227560(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227978(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228102(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.formview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227992(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227443(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227970(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228210(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x8f2zez5(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/zzx23804(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.datalist(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/es4e4e0e(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0603s5x0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sa6exk51(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sa6exk51(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/79k821wc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/79k821wc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/75670ez0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/75670ez0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/90xwe9s3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/90xwe9s3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/efx1fwb6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/efx1fwb6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/df6hth3s(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/df6hth3s(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6y92e1ze(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35we4t61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35we4t61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6d5z5yty(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6d5z5yty(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.menu(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bz09dy46(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sitemappath(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x20z8c51(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178419(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178419(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228046(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178296(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178296(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.detailsview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/s3w1w7t4(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227442(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227560(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227978(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228102(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.formview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227992(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227443(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227970(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228210(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x8f2zez5(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/zzx23804(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.datalist(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/es4e4e0e(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0603s5x0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sa6exk51(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/sa6exk51(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/79k821wc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/79k821wc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/75670ez0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/75670ez0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/90xwe9s3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/90xwe9s3(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/efx1fwb6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/efx1fwb6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/df6hth3s(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/df6hth3s(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6y92e1ze(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35we4t61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/35we4t61(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6d5z5yty(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6d5z5yty(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.menu(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bz09dy46(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.sitemappath(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x20z8c51(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178419(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178419(VS.80).aspx
  • 8/3/2019 Creating and Programming a Web Application

    13/24

    How to: Filter the Nodes Retrieved by SiteMapDataSource Web

    Server Controls

    TreeView TreeView Web Server Control

    TreeView Web Server Control Events

    Customizing the Look and Feel of the TreeView Web ServerControl

    Populating Tree Nodes in the TreeView Web Server Control

    Binding Data to the TreeView Web Server Control Selection, Navigation, and Check Boxes in the TreeView Web

    Server Control

    Using Images with the TreeView Control

    o Use the FormView control to display the values of a single table

    record from a data source.

    FormView

    FormView Web Server Control Overview

    Creating Templates for the FormView Web Server Control Paging in a FormView Web Server Control

    Modifying Data Using a FormView Web Server Control FormView Web Server Control Events

    Manage connections and transactions of databases.

    o Configure a connection to a database graphically by using the Connection

    Wizard.

    o Configure a connection by using Server Explorer.

    o Configure a connection to a database by using the connection class.

    o Connect to a database by using specific database connection objects.

    SqlConnection

    OleDbConnection OdbcConnection

    OracleConnection

    o Enumerate through instances of Microsoft SQL Server by using the

    DbProviderFactories.GetFactoryClasses method.

    o Open a connection by using the Open method of a connection object.

    o Close a connection by using the connection object.

    o Secure a connection to protect access to your data source.

    o Create a connection designed for reuse in a connection pool.

    o Control connection pooling by configuring ConnectionString values based

    on database type.

    o Use connection events to detect database information. InfoMessage

    o Handle connection exceptions when connecting to a database.

    o Perform transactions by using the ADO.NET Transaction object.

    Create, delete, and edit data in a connected environment.

    o Retrieve data by using a DataReader object.

    o Build SQL commands visually in Server Explorer.

    How to: Create and Execute an SQL Statement that Returns Rows

    http://msdn.microsoft.com/en-us/library/ms178423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.treeview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/3eafky27(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/7xa40z7c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178262(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178262(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x2hkh9cb(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178258(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178259(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178259(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366759(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.formview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227992(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227443(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227970(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228210(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171886(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171886(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/w4dd7z6t(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/w4dd7z6t(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/w4dd7z6t(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/33wwc2yw(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/33wwc2yw(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection_members.aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection_members.aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.odbc.odbcconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oracleclient.oracleconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12kxkt25(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12kxkt25(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection.open(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection.open(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection.close(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection.close(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/89211k9b(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/89211k9b(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/8xx3tyca(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/8xx3tyca(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms254502(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms254502(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/a0hee08w(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/a0hee08w(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.infomessage(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/a0hee08w.aspxhttp://msdn.microsoft.com/en-us/library/a0hee08w.aspxhttp://msdn.microsoft.com/en-us/library/2k2hy99x(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2k2hy99x(VS.80).aspxhttp://www.certsandprogs.com/search/label/Retrieve%20data%20by%20using%20a%20DataReader%20object.http://www.certsandprogs.com/search/label/Retrieve%20data%20by%20using%20a%20DataReader%20object.http://msdn.microsoft.com/en-us/library/ms171919(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171919(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fksx3b4f(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.treeview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/3eafky27(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/7xa40z7c(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178262(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178262(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x2hkh9cb(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178258(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178259(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms178259(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms366759(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.formview(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227992(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227423(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227443(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms227970(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms228210(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171886(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/w4dd7z6t(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/w4dd7z6t(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/33wwc2yw(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection_members.aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.odbc.odbcconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oracleclient.oracleconnection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12kxkt25(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/12kxkt25(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection.open(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dbconnection.close(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/89211k9b(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/8xx3tyca(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms254502(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms254502(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/a0hee08w(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.infomessage(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/a0hee08w.aspxhttp://msdn.microsoft.com/en-us/library/2k2hy99x(VS.80).aspxhttp://www.certsandprogs.com/search/label/Retrieve%20data%20by%20using%20a%20DataReader%20object.http://msdn.microsoft.com/en-us/library/ms171919(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fksx3b4f(VS.80).aspx
  • 8/3/2019 Creating and Programming a Web Application

    14/24

    How to: Create and Execute an SQL Statement that Returns a

    Single Value

    How to: Create and Execute an SQL Statement that Returns NoValue

    How to: Execute a Stored Procedure that Returns Rows

    How to: Execute a Stored Procedure that Returns a Single Value How to: Execute a Stored Procedure that Returns No Value

    o Build SQL commands in code.

    o Create parameters for a command object.

    ParameterDirection

    Input

    InputOutput Output

    ReturnValue

    o Perform database operations by using a command object.

    Executing a Command

    Working with Command Parameters Automatically Generating Commands

    Obtaining a Single Value from a Databaseo Retrieve data from a database by using a command object.

    o Perform asynchronous operations by using a command object

    BeginExecuteNonQuery BeginExecuteReader

    BeginExecuteXmlReader

    EndExecuteNonQuery EndExecuteReader

    EndExecuteXmlReader

    Calling Synchronous Methods Asynchronously Creating ASP.NET Applications Using Wait Handles

    o Perform bulk copy operations to copy data to a SQL Server computer.

    o Store and retrieve binary large object (BLOB) data types in a database.

    Create, delete, and edit data in a disconnected environment.

    o Create an instance of the DataSet class programmatically.

    o Create a DataSet graphically.

    How to: Open a Dataset in the Dataset Designer

    How to: Edit a Dataset

    Walkthrough: Creating a Dataset with the Dataset Designer

    o Create a DataSet programmatically.

    o Add a DataTable to a DataSet. TableName

    o Add a relationship between tables.

    DataRelation

    UniqueConstraint

    ForeignKeyConstrainto Navigate a relationship between tables.

    o Merge DataSet contents.

    http://msdn.microsoft.com/en-us/library/eeb84awz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/eeb84awz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/eeb84awz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0k7hxwz6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0k7hxwz6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/d7125bke(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/37hwc7kt(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171921(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yy6y35y8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yy6y35y8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.input(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.inputoutput(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.output(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.returnvalue(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.commandtype(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tyy0sz6b(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yy6y35y8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hdt3k85x(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/haa3afyz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/zw97wx20(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ca56w9se(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1a674khd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x76a3b72(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.endexecutenonquery(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.endexecutereader(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.endexecutexmlreader(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2e08f6yc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yws6262h(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/87z0hy49(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.dataset.aspxhttp://msdn.microsoft.com/en-us/library/system.data.dataset.aspxhttp://msdn.microsoft.com/en-us/library/314t4see(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/314t4see(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/7973zb70(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/76ah1sx7(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171897(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.dataset(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6zd7cwzh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6zd7cwzh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.datatable.tablename(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ay82azad(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.datarelation(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.uniqueconstraint(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.foreignkeyconstraint(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/d6s958d6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/d6s958d6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/aszytsd8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/aszytsd8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/eeb84awz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/eeb84awz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0k7hxwz6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/0k7hxwz6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/d7125bke(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/37hwc7kt(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171921(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yy6y35y8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.input(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.inputoutput(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.output(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.parameterdirection.returnvalue(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.commandtype(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tyy0sz6b(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yy6y35y8(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hdt3k85x(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/haa3afyz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/zw97wx20(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ca56w9se(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1a674khd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/x76a3b72(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.endexecutenonquery(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.endexecutereader(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.endexecutexmlreader(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/2e08f6yc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/yws6262h(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/87z0hy49(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.dataset.aspxhttp://msdn.microsoft.com/en-us/library/314t4see(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/7973zb70(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/76ah1sx7(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms171897(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.dataset(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6zd7cwzh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.datatable.tablename(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ay82azad(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.datarelation(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.uniqueconstraint(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.foreignkeyconstraint(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/d6s958d6(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/aszytsd8(VS.80).aspx
  • 8/3/2019 Creating and Programming a Web Application

    15/24

    o Copy DataSet contents.

    o Create a strongly typed DataSet.

    o Create DataTables.

    o Manage data within a DataTable.

    o Create and use DataViews.

    Sorting and Filtering Data Using a DataView Viewing Data Using a DataView

    Modifying Data Using a DataView

    Working with DataView Events Setting Default Table Views Using a DataViewManager

    o Represent data in a DataSet by using XML.

    DiffGrams Loading a DataSet from XML

    Writing a DataSet as XML Data

    Loading DataSet Schema Information from XML Writing DataSet Schema Information as XML Schema (XSD)

    Synchronizing a DataSet with an XmlDataDocument Nested DataRelations Generating DataSet Relational Structure from XML Schema

    (XSD)

    Inferring DataSet Relational Structure from XML

    o Access an ADO Recordset or Record by using the OleDbDataAdapter

    object.

    o Generate DataAdapter commands automatically by using the

    CommandBuilder object.o Generate DataAdapter commands programmatically.

    o Populate a DataSet by using a DataAdapter.

    o Update a database by using a DataAdapter.o Resolve conflicts between a DataSet and a database by using the

    DataAdapter.

    o Respond to changes made to data at the data source by using DataAdapter

    events.

    o Perform batch operations by using DataAdapters.

    Manage XML data with the XML Document Object Model (DOM).

    o Read XML data into the DOM by using the Load method.

    o Modify an XML document by adding and removing nodes.

    RemoveChild

    o Modify nodes in an XML document.

    o Write data in XML format from the DOM.o Work with nodes in the XML DOM by using XmlNamedNodeMap and

    the XmlNodeList.

    XmlNodeList

    o Handle DOM events.

    NodeChanged

    NodeChanging NodeInserted

    http://msdn.microsoft.com/en-us/library/kax0zhe7(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/kax0zhe7(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wha85tzb(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/wha85tzb(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6zd7cwzh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/6zd7cwzh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tzwewss0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tzwewss0(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hy5b8exc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/hy5b8exc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/13wb36xf(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ke2k6ya2(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/70k6287b(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bfcfdz29(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/4xz507ds(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/84sxtbxh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/84sxtbxh(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/ms172088(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/fx29c3yd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/zx8h06sz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/atchhx4f(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/41732z18(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/1t4362sd(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/7sfkwf9s(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bfdchewb(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bfdchewb(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/3b4194wc(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oledb.oledbdataadapter(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oledb.oledbdataadapter(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.oledb.oledbdataadapter(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/tf579hcz(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/9hy8csk1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/9hy8csk1(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bh8kx08z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/bh8kx08z(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dataadapter.update(VS.80).aspxhttp://msdn.microsoft.com/en-us/library/system.data.common.dataadapter.update(VS.80).aspxhttp://msdn.microsoft.com/en-us/libr

Recommended