ASP.NET 4 Unleased - p 11 pptx

10 395 0
ASP.NET 4 Unleased - p 11 pptx

Đang tải... (xem toàn văn)

Thông tin tài liệu

ptg 74 CHAPTER 2 Using the Standard Controls AutoCompleteType=”LastName” Runat=”server” /> <br /><br /> <asp:Button id=”btnSubmit” Text=”Submit” Runat=”server” /> </div> </form> </body> </html> FIGURE 2.7 Using AutoComplete with the TextBox control. NOTE When using Internet Explorer, you can configure AutoComplete by selecting Tools, Internet Options, Content, and clicking the AutoComplete button. The ASP.NET Framework does not support AutoComplete for other browsers such as FireFox or Opera. Finally, the TextBox control supports the Focus() method. You can use the Focus() method to shift the initial form focus to a particular TextBox control. By default, no form field has focus when a page first opens. If you want to make it easier for users to complete a form, you can set the focus automatically to a particular TextBox control contained in a form. From the Library of Wow! eBook ptg 75 Accepting User Input 2 For example, the page in Listing 2.9 sets the focus to the first of two form fields. LISTING 2.9 TextBoxFocus.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> void Page_Load() { txtFirstName.Focus(); } </script> <html xmlns=”http://www.w3.org/1999/xhtml” > <head id=”Head1” runat=”server”> <title>TextBox Focus</title> </head> <body> <form id=”form1” runat=”server”> <div> <asp:Label id=”lblFirstName” Text=”First Name:” AssociatedControlID=”txtFirstName” Runat=”server” /> <br /> <asp:TextBox id=”txtFirstName” AutoCompleteType=”FirstName” Runat=”server” /> <br /><br /> <asp:Label id=”lblLastname” Text=”Last Name:” AssociatedControlID=”txtLastName” Runat=”server” /> <br /> <asp:TextBox id=”txtLastName” AutoCompleteType=”LastName” Runat=”server” /> <br /><br /> <asp:Button From the Library of Wow! eBook ptg 76 CHAPTER 2 Using the Standard Controls id=”btnSubmit” Text=”Submit” Runat=”server” /> </div> </form> </body> </html> In Listing 2.9, the Page_Load() event handler sets the form focus to the txtFirstName TextBox control. NOTE You can also set the for m focus by setting either the Page.SetFocus() method or the server-side HtmlForm control’s DefaultFocus property. Using the CheckBox Control The CheckBox control enables you to display, well, a check box. The page in Listing 2.10 illustrates how you can use the CheckBox control in a newsletter signup form (see Figure 2.8). LISTING 2.10 ShowCheckBox.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> protected void btnSubmit_Click(object sender, EventArgs e) { lblResult.Text = chkNewsletter.Checked.ToString(); } </script> <html xmlns=”http://www.w3.org/1999/xhtml” > <head id=”Head1” runat=”server”> <title>Show CheckBox</title> </head> <body> <form id=”form1” runat=”server”> <div> <asp:CheckBox id=”chkNewsletter” From the Library of Wow! eBook ptg 77 Accepting User Input 2 Text=”Receive Newsletter?” Runat=”server” /> <br /> <asp:Button id=”btnSubmit” Text=”Submit” OnClick=”btnSubmit_Click” Runat=”server” /> <hr /> <asp:Label id=”lblResult” Runat=”server” /> </div> </form> </body> </html> FIGURE 2.8 Displaying a CheckBox control. In Listing 2.10, the Checked property determines whether the user has checked the check box. Notice that the CheckBox includes a Text property that labels the CheckBox. If you use this property, the proper (accessibility standards-compliant) HTML <label> tag is gener- ated for the TextBox. From the Library of Wow! eBook ptg 78 CHAPTER 2 Using the Standard Controls The CheckBox control supports the following properties (this is not a complete list): . AccessKey—Enables you to specify a key that navigates to the TextBox control. . AutoPostBack—Enables you to post the form containing the CheckBox back to the server automatically when the CheckBox is checked or unchecked. . Checked—Enables you to get or set whether the CheckBox is checked. . Enabled—Enables you to disable the TextBox. . TabIndex—Enables you to specify the tab order of the check box. . Text—Enables you to provide a label for the check box. . TextAlign—Enables you to align the label for the check box. Possible values are Left and Right. The CheckBox control also supports the following method: . Focus—Enables you to set the initial form focus to the check box. And the CheckBox control supports the following event: . CheckedChanged—Raised on the server when the check box is checked or unchecked. Notice that the CheckBox control, like the TextBox control, supports the AutoPostBack property. The page in Listing 2.11 illustrates how you can use the AutoPostBack property to post the form containing the check box back to the server automatically when the check box is checked or unchecked. LISTING 2.11 CheckBoxAutoPostBack.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> protected void chkNewsletter_CheckedChanged(object sender, EventArgs e) { lblResult.Text = chkNewsletter.Checked.ToString(); } </script> <html xmlns=”http://www.w3.org/1999/xhtml” > <head id=”Head1” runat=”server”> <title>CheckBox AutoPostBack</title> </head> <body> <form id=”form1” runat=”server”> <div> From the Library of Wow! eBook ptg 79 Accepting User Input 2 <asp:CheckBox id=”chkNewsletter” Text=”Receive Newsletter?” AutoPostBack=”true” OnCheckedChanged=”chkNewsletter_CheckedChanged” Runat=”server” /> <hr /> <asp:Label id=”lblResult” Runat=”server” /> </div> </form> </body> </html> NOTE The ASP.NET Framework also includes the CheckBoxList control that enables you to display a list of check boxes automatically. This control is discussed in detail in Chapter 10, “Using List Controls.” Using the RadioButton Control You always use the RadioButton control in a group. Only one radio button in a group of RadioButton controls can be checked at a time. For example, the page in Listing 2.12 contains three RadioButton controls (see Figure 2.9). LISTING 2.12 ShowRadioButton.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> protected void btnSubmit_Click(object sender, EventArgs e) { if (rdlMagazine.Checked) lblResult.Text = rdlMagazine.Text; if (rdlTelevision.Checked) lblResult.Text = rdlTelevision.Text; if (rdlOther.Checked) lblResult.Text = rdlOther.Text; From the Library of Wow! eBook ptg 80 CHAPTER 2 Using the Standard Controls } </script> <html xmlns=”http://www.w3.org/1999/xhtml” > <head id=”Head1” runat=”server”> <title>Show RadioButton</title> </head> <body> <form id=”form1” runat=”server”> <div> How did you hear about our Website? <ul> <li> <asp:RadioButton id=”rdlMagazine” Text=”Magazine Article” GroupName=”Source” Runat=”server” /> </li> <li> <asp:RadioButton id=”rdlTelevision” Text=”Television Program” GroupName=”Source” Runat=”server” /> </li> <li> <asp:RadioButton id=”rdlOther” Text=”Other Source” GroupName=”Source” Runat=”server” /> </li> </ul> <asp:Button id=”btnSubmit” Text=”Submit” Runat=”server” OnClick=”btnSubmit_Click” /> <hr /> <asp:Label id=”lblResult” Runat=”server” /> From the Library of Wow! eBook ptg 81 Accepting User Input 2 </div> </form> </body> </html> FIGURE 2.9 Displaying RadioButton. The RadioButton controls in Listing 2.12 are grouped together with the RadioButton control’s GroupName property. Only one of the three RadioButton controls can be checked at a time. The RadioButton control supports the following properties (this is not a complete list): . AccessKey—Enables you to specify a key that navigates to the RadioButton control. . AutoPostBack—Enables you to post the form containing the RadioButton back to the server automatically when the radio button is checked or unchecked. . Checked—Enables you to get or set whether the RadioButton control is checked. . Enabled—Enables you to disable the RadioButton. . GroupName—Enables you to group RadioButton controls. . TabIndex—Enables you to specify the tab order of the RadioButton control. . Text—Enables you to label the RadioButton control. . TextAlign—Enables you to align the RadioButton label. Possible values are Left and Right. From the Library of Wow! eBook ptg 82 CHAPTER 2 Using the Standard Controls The RadioButton control supports the following method: . Focus—Enables you to set the initial form focus to the RadioButton control. Finally, the RadioButton control supports the following event: . CheckedChanged—Raised on the server when the RadioButton is checked or unchecked. The page in Listing 2.13 demonstrates how you can use the AutoPostBack property with a group of RadioButton controls and detect which RadioButton control is selected. LISTING 2.13 RadioButtonAutoPostBack.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> protected void RadioButton_CheckedChanged(object sender, EventArgs e) { RadioButton selectedRadioButton = (RadioButton)sender; lblResult.Text = selectedRadioButton.Text; } </script> <html xmlns=”http://www.w3.org/1999/xhtml” > <head id=”Head1” runat=”server”> <title>RadioButton AutoPostBack</title> </head> <body> <form id=”form1” runat=”server”> <div> How did you hear about our Website? <ul> <li> <asp:RadioButton id=”rdlMagazine” Text=”Magazine Article” GroupName=”Source” AutoPostBack=”true” OnCheckedChanged=”RadioButton_CheckedChanged” Runat=”server” /> </li> <li> <asp:RadioButton From the Library of Wow! eBook ptg 83 Accepting User Input 2 id=”rdlTelevision” Text=”Television Program” GroupName=”Source” AutoPostBack=”true” OnCheckedChanged=”RadioButton_CheckedChanged” Runat=”server” /> </li> <li> <asp:RadioButton id=”rdlOther” Text=”Other Source” GroupName=”Source” AutoPostBack=”true” OnCheckedChanged=”RadioButton_CheckedChanged” Runat=”server” /> </li> </ul> <hr /> <asp:Label id=”lblResult” Runat=”server” /> </div> </form> </body> </html> In Listing 2.13, when you select a RadioButton control, the page is automatically posted back to the server, and the value of the Text property of the selected RadioButton control displays. Notice that all three of the RadioButton controls are associated with the same CheckedChanged event handler. The first parameter passed to the handler represents the particular RadioButton that was changed. NOTE The ASP.NET Framework also includes the RadioButtonList control, which enables you to display a list of radio buttons automatically. This control is discussed in detail in Chapter 10. From the Library of Wow! eBook . control, like the TextBox control, supports the AutoPostBack property. The page in Listing 2 .11 illustrates how you can use the AutoPostBack property to post the form containing the check box. unchecked. LISTING 2 .11 CheckBoxAutoPostBack.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC -/ /W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>. TextBoxFocus.aspx <%@ Page Language=”C#” %> <!DOCTYPE html PUBLIC -/ /W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> void

Ngày đăng: 06/07/2014, 18:20

Từ khóa liên quan

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan