Prev | Current Page 309 | Next

Rob Cameron and Dale Michalk

"Pro ASP.NET 3.5 Server Controls and AJAX Components"

aspx.cs"
Inherits="ControlsBook2Web.Ch05.SuperButton"
Title="SuperButton Demo" %>
<%@ Register TagPrefix="apress" Namespace="ControlsBook2Lib.Ch05"
Assembly="ControlsBook2Lib" %>
"ChapterNumAndTitle" runat="server">
5
  ID="ChapterTitleLabel" runat="server" Width="360px">
Server Control Events



SuperButton


CHAPTER 5 ?–  SERVER CONTROL EVEN TS 219
Text="SuperButton Button" OnClick="superbtn_Click">





Text="SuperButton HyperLink"
OnClick="superlink_Click">






Waiting...



Listing 5-11. The SuperButton Web Form Code-Behind Class File
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ControlsBook2Web.Ch05
{
public partial class SuperButton : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
ClickLabel.


Pages:
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321