Prev | Current Page 673 | Next

Rob Cameron and Dale Michalk

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

aspx and
its code-behind file.
Listing 10-16. The MCTextBoxDemo.aspx File
<%@ Page Language="c#" CodeBehind="MCTextBoxDemo.aspx.cs"
Inherits="ControlsBook2Mobile.Ch10.MCTextBox"
AutoEventWireup="True" %>
520 CHAPTER 10 ?–  OTHER SERVER CONTROLS
<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<%@ Register TagPrefix="ApressMC" Namespace="ControlsBook2Lib.Ch10"
Assembly="ControlsBook2Lib" %>







Change the value:
Text="Hi There!" MaxLength="15"
Numeric="False" Password="False" Size="10"
OnTextChanged="MCTextBox1_TextChanged">

Command
Message


Listing 10-17. The MCTextBoxDemo.aspx File
using System;
namespace ControlsBook2Mobile.Ch10
{
public partial class MCTextBox : System.


Pages:
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685