Getting Started
  Introduction
  What is ASP.NET?
  Language Support

ASP.NET Web Forms
  Introducing Web Forms
  Working with Server Controls
  Applying Styles to Controls
  Server Control Form Validation
  Web Forms User Controls
  Data Binding Server Controls
  Server-Side Data Access
  Data Access and Customization
  Working with Business Objects
  Authoring Custom Controls
  Web Forms Controls Reference
  Web Forms Syntax Reference

ASP.NET Web Services
  Introducing Web Services
  Writing a Simple Web Service
  Web Service Type Marshalling
  Using Data in Web Services
  Using Objects and Intrinsics
  The WebService Behavior
  HTML Pattern Matching

ASP.NET Web Applications
  Application Overview
  Using the Global.asax File
  Managing Application State
  HttpHandlers and Factories

Cache Services
  Caching Overview
  Page Output Caching
  Page Fragment Caching
  Page Data Caching

Configuration
  Configuration Overview
  Configuration File Format
  Retrieving Configuration

Deployment
  Deploying Applications
  Using the Process Model
  Handling Errors

Security
  Security Overview
  Authentication & Authorization
  Windows-based Authentication
  Forms-based Authentication
  Authorizing Users and Roles
  User Account Impersonation
  Security and WebServices

Localization
  Internationalization Overview
  Setting Culture and Encoding
  Localizing ASP.NET Applications
  Working with Resource Files

Tracing
  Tracing Overview
  Trace Logging to Page Output
  Application-level Trace Logging

Debugging
  The SDK Debugger

Performance
  Performance Overview
  Performance Tuning Tips
  Measuring Performance

ASP to ASP.NET Migration
  Migration Overview
  Syntax and Semantics
  Language Compatibility
  COM Interoperability
  Transactions

Sample Applications
  A Personalized Portal
  An E-Commerce Storefront
  A Class Browser Application
  IBuySpy.com

  Get URL for this page

Button


Postback Using Button

The Button control provides a command button-style control that is used to post a Web Forms page back to the server. The following sample illustrates using a simple Button control.

 
VB Button1.aspx

[Run Sample] | [View Source]

Bubbling Button Clicks Within a List

When used in a templated list such as a Repeater, DataList, or DataGrid, many Button controls might be rendered as the list iterates over its data source. For more information, see the Data Binding section. Because each of these Button controls shares the same ID, you cannot simply bind an event handler to each Button control's OnClick event to determine the particular Button that was clicked. To solve this, you use event bubbling to fire an event on the container control (in this case, the Repeater, DataList, or DataGrid), and let the container impart additional information to the event handler about the item that fired the event.

These events can be fired from a Button by specifying a CommandName property with the name of the event. When the Button is clicked, the command "bubbles" to the container control (such as Repeater), which fires its own event. The arguments for this event might contain additional information, such as a custom string or the index of the item that fired the event.

The following sample illustrates how a Button control's commands can bubble to the OnItemCommand event of a list. The Button control's CommandName and CommandArgument strings are passed to the OnItemCommand event, permitting the sample code to distinguish which button was clicked.

 
VB Button2.aspx

[Run Sample] | [View Source]

Mouse-Over Effects on Button

You can hook the client script events onmouseover and onmouseout on a Button control to provide mouse-over effects such as changing the font or color of the button. Client attributes such as onmouseover are disregarded by ASP.NET on the server, and passed "as is" to the browser. If your application targets newer browsers that support DHTML, these events will fire in the browser as the cursor passes over the button. The following sample demonstrates buttons with mouse-over effects.

 
VB Button3.aspx

[Run Sample] | [View Source]


Copyright 2001 Microsoft Corporation. All rights reserved.