4.2 ASP (Web Server) Controls

The third type of control is the ASP control , also known as the ASP server control or the web server control . In this book, we will refer to it as an ASP control, since the syntax used to implement it is of the form:

<asp:controlType              runat="server" />

Here, the control tag always begins with asp:. ASP controls offer a more consistent programming model than the analogous HTML server control. For example, in HTML, the input tag (<input>) is used for buttons, single-line text fields, checkboxes, hidden fields, and passwords. For multiline text fields, you must use the <textarea> tag. With ASP controls, each different type of functionality corresponds to a specific control. For example, all text is entered using the TextBox control; the number of lines is specified using a property. In fact, for ASP controls in general, all the attributes correspond to properties of the control.

The ASP controls also include additional, rich controls, such as the Calendar and AdRotator.

Example 4-5 and Example 4-6 demonstrate the use of ASP controls in a web page analogous to the HTML server controls of Example 4-1 and Example 4-2. They show the use of the TextBox and Button ASP controls, rather than of the HTML controls.

Example 4-5. Code listing for csASPServerControls1.aspx
<%@ Page Language="C#" %> <html> <script runat="server">    void btnBookName_Click(Object Source, EventArgs E)    {       lblBookName.Text = txtBookName.Text;    } </script>    <body>    <form runat="server">       <h1>ASP Controls</h1>       <br/>       <h2>The date and time is <% =DateTime.Now.ToString(  ) %>.</h2>       <br/>       <h2>ASP Control</h2>       Book Name:&nbsp;&nbsp;&nbsp;       <asp:TextBox                      text="Enter book name."          runat="server"              width="250px" />       <br/>       <br/>       <br/>       <asp:Button                     text="Book Name"           onClick="btnBookName_Click"           runat="server" />       <br/>       <br/>       <asp:Label  text="" runat="server"/>    </form>    </body> </html>
Example 4-6. Code listing for vbASPServerControls1.aspx
<%@ Page Language="VB" %> <html> <script runat="server">    sub btnBookName_Click(ByVal Sender as Object, _                          ByVal e as EventArgs)       lblBookName.Text = txtBookName.Text    end sub </script>    <body>    <form runat="server">       <h1>ASP Controls</h1>       <br/>       <h2>The date and time is <% =DateTime.Now.ToString(  ) %>.</h2>       <br/>       <h2>ASP Control</h2>       Book Name:&nbsp;&nbsp;&nbsp;       <asp:TextBox                      text="Enter book name."          runat="server"              width="250px" />       <br/>       <br/>       <br/>       <asp:Button                     text="Book Name"           onClick="btnBookName_Click"           runat="server" />       <br/>       <br/>       <asp:Label  text="" runat="server"/>    </form>    </body> </html>

The immediate difference between HTML server controls and ASP controls is how the control is referenced in code. In addition to the obvious fact that the controls have different names, the ASP controls are preceded by the ASP namespace. This is indicated by the asp: in front of each control name. For example:

<asp:TextBox

Another difference between the HTML server controls and the ASP controls is the slightly different attribute name used for the displayed text. In many HTML controls (including <input> tags), value is used to specify the text that will be displayed by the control. In ASP controls, text is always the attribute name used to specify the text that will be displayed.

In Example 4-5 and Example 4-6, this difference is seen in all three ASP controls used in the page, as well as in the btnBookName method, which makes reference to the text attribute for two of the controls.

As you will see later in this chapter and in Chapter 5, ASP controls offer a set of attributes for each control that is more consistent than the attributes available to HTML server controls. In actuality, the attributes are not really attributes, but rather properties of the ASP control, and they are programmatically accessible.

Just as with the HTML server controls, ASP controls have an attribute called onClick, which defines the event handler for the Click event. In the examples, it points to the method btnBookName_Click, defined in the script block at the top of the code.

Figure 4-4 shows the page that results from Example 4-5 and Example 4-6.

Figure 4-4. Output from Example 4-5 or Example 4-6
figs/pan2_0404.gif

4.2.1 ASP.NET and Browsers

The browser never sees the ASP control. The server processes the ASP control and sends standard HTML to the browser.

ASP.NET considers browsers to be either uplevel or downlevel. Uplevel browsers support script Versions 1.2 (ECMA Script, JavaScript, JScript) and HTML 4.0; typical uplevel browsers would include Internet Explorer 4.0 and later releases. Downlevel browsers, on the other hand, support only HTML 3.2.

ASP.NET can tell you which browser is being used to display the page. This information is made available via the HttpRequest.Browser property. HttpRequest.Browser returns a HttpBrowserCapabilities object whose many properties include a number of Booleans, such as whether the browser supports cookies, frames, and so forth.

You will find that you don't often need to check the HttpBrowserCapabilities object because the server will automatically convert your HTML to reflect the capabilities of the client browser. For example, validation controls (considered in Chapter 8) can be used to validate customer data entry. If the user's browser supports client-side JavaScript, the validation will happen on the client. However, if the browser does not support client-side scripting, then the validation is done server-side.

Custom programming to support various browsers has been incorporated into the ASP.NET framework, freeing you to focus on the larger task at hand. From within your browser, view the source for the web page displayed in Figure 4-4, and originally coded in Example 4-5. This source is shown in Example 4-7. (The HTML output produced by Example 4-6 is comparable.) Notice that there are no ASP controls, but that all the controls have been converted to traditional HTML tags. Also, note that a hidden field with the name "_ _VIEWSTATE" has been inserted into the output. This is how ASP.NET maintains the state of the controls. When a page is submitted to the server and then redisplayed, the controls are not reset to their default values. Chapter 6 discusses state.

Example 4-7. Output HTML from csASPServerControls.asx
<html>     <body>     <form name="ctrl2" method="post" action="aspservercontrols.aspx" > <input type="hidden" name="_  _VIEWSTATE"  value="dDwtMTA4MDU5NDMzODt0PDtsPDE8Mj47PjtsPHQ8O2w8MTwwPjsxPDI+Oz47bDx0PHA8cDxsPFRleHQ7Pj tsPFByb2dyYW1taW5nIEFTUC5ORVQ7Pj47Pjs7Pjt0PHA8cDxsPFRleHQ7PjtsPFByb2dyYW1taW5nIEFTUC5ORVQ 7Pj47Pjs7Pjs+Pjs+Pjs+yvuEznOtPM0uYYSNQ+dcGDUzI3M=" />         <h1>ASP Controls</h1>         <br/>         <h2>The date and time is 11/19/2001 1:58:16 PM.</h2>         <br/>         <h2>ASP Control</h2>         Book Name:&nbsp;&nbsp;&nbsp;         <input name="txtBookName" type="text" value="Programming ASP.NET"   size="40" />                  <br/>         <br/>         <br/>              <input type="submit" name="btnBookName" value="Book Name"  />         <br/>         <br/>         <span >Programming ASP.NET</span>     </form>     </body> </html>

4.2.2 ASP Control Hierarchy

All the ASP controls except for the Repeater (discussed in Chapter 13) derive from the WebControl class. The WebControl class and the Repeater class both derive from System.Web.UI.Control, which itself derives from System.Object. The Repeater class, the WebControl class, and all the controls that derive from WebControl are in the System.Web.UI.WebControls namespace. These relationships are shown in Figure 4-5.

All of the properties, events, and methods of WebControl and System.Web.UI.Control are inherited by the ASP controls. Table 4-2 lists many of the commonly used properties inherited by all the ASP controls. Where applicable, default values are indicated.

Table 4-2. Properties inherited by all ASP controls

Name

BCL Type

Get

Set

Values

Description

AccessKey

String

x

x

Single-character string.

Pressing the Alt key in combination with this value moves focus to the control.

BackColor

Color

x

x

Azure, Green, Blue, and so on

Background color.

BorderColor

Color

x

x

Fuchsia, Aqua, Coral, and so on

Border color.

BorderStyle

BorderStyle

x

x

Dashed, Dotted, Double, NotSet, and so on

Border style. Default is NotSet.

BorderWidth

Unit

x

x

nn nnpt

Width of the border. If of the form nn, where nn is an integer, then in units of pixels. If of the form nnpt, where nn is an integer, then in units of points.

CausesValidation

Boolean

x

x

true, false

Indicates if entering control causes validation for controls that require validation. Default is true.

CssClass

String

x

x

 

CSS class.

Enabled

Boolean

x

x

true, false

If disabled, control is visible but grayed out and not operative. Contents are still selectable for copy and paste. Default is true.

Font

FontInfo

x

x

 

See Table 5-1 in Chapter 5.

ForeColor

Color

x

x

Lavender, LightBlue,Blue, and so on

Foreground color.

Height

Unit

x

x

nn nn%

If of the form nn, where nn is an integer, then in units of pixels. If of the form nn%, then it is a percentage of the height of the container. For downlevel browsers, will not render for Label, HyperLink, LinkButton, any validator controls, or for CheckBoxList, RadioButtonList, or DataList when their RepeatLayout property is Flow.

ID

String

x

x

 

Programmatic identifier for the control.

ToolTip

String

x

x

 

Text string displayed when the mouse hovers over the control; not rendered in downlevel browsers.

Visible

Boolean

x

x

true, false

If false, then control is not rendered; the default is true.

Width

Unit

x

x

nn nn%

If of the form nn, where nn is an integer, then in units of pixels. If of the form nn%, where nn is an integer, then it is a percentage of the width of the container. For downlevel browsers, will not render for Label, HyperLink, LinkButton, any validator controls, or for CheckBoxList, RadioButtonList, or DataList when their RepeatLayout property is Flow.

4.2.3 Comparing HTML and ASP Server Controls

The two types of server controls (HTML server controls and ASP controls) have nearly the same functionality. The advantages of each type are summarized in Table 4-3.

Figure 4-5. Relationships of controls in the System.Web.UI.WebControls namespace
figs/pan2_0405.gif

Table 4-3. Advantages of HTML server controls and ASP controls

Type of control

Advantages

Web server controls (ASP controls)

  • Offer an event-driven programming model

  • Provide richer controls, such as calendar and ad rotator

  • Support event bubbling in nested controls

  • Automatically detect client browser level and generate correct HTML for both uplevel (HTML 4.0) and downlevel (HTML 3.2) browsers

  • Typed object model provides type safety and reduces programming errors

HTML server controls

  • Provide transition from existing HTML pages

  • Offer a familiar HTML-like object model

  • Can be supported by any HTML design environment, since they map to HTML elements

  • Allow controls that will also interact with client script



Programming ASP. NET
Programming ASP.NET 3.5
ISBN: 0596529562
EAN: 2147483647
Year: 2003
Pages: 156

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net