Get form data: asp:checkbox, asp:DropDownList, asp:TextBox (VB.net) : DropDownList « Asp Control « ASP.Net






Get form data: asp:checkbox, asp:DropDownList, asp:TextBox (VB.net)

<%@ Page Language="VB" %>
<script runat="server">
    Sub ImageButton1_Click(sender As Object, e As ImageClickEventArgs)
      Dim Message As String
    
      Message = "Hello " & txtName.Text & "."
    
      If chkTour.Checked Then
        Message &= cboCountry.SelectedItem.Text
      End If
    
      If radMail.SelectedItem.Value = "HTML" Then
        Label1.Text = "Using HTML format for mail. Sending:<p />" & Message
      Else
        Label1.Text = "Using plain format for mail. Sending:<p />" & Message
      End If
    End Sub

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
        <p>
            Subscribe to our mailing list: 
        </p>
        <p>
            <table style="WIDTH: 300px; HEIGHT: 150px">
                <tbody>
                    <tr>
                        <td>
                            Name:</td>
                        <td>
                            <asp:TextBox id="txtName" runat="server"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            E-mail Address:</td>
                        <td>
                            <asp:TextBox id="txtEmail" runat="server"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Country:</td>
                        <td>
                            <asp:DropDownList id="cboCountry" runat="server">
                                <asp:ListItem Value="US" Selected="True">United States</asp:ListItem>
                                <asp:ListItem Value="UK">United Kingdom</asp:ListItem>
                            </asp:DropDownList>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Mail me tour details:</td>
                        <td>
                            <asp:CheckBox id="chkTour" runat="server"></asp:CheckBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            Mail format:</td>
                        <td>
                            <asp:RadioButtonList id="radMail" runat="server">
                                <asp:ListItem Value="HTML">HTML</asp:ListItem>
                                <asp:ListItem Value="Text">Text</asp:ListItem>
                            </asp:RadioButtonList>
                        </td>
                    </tr>
                    <tr>
                        <td>
                        </td>
                        <td>
                            <asp:ImageButton id="ImageButton1" onclick="ImageButton1_Click" runat="server" ImageUrl="http://www.java2s.com/style/logo.png"></asp:ImageButton>
                        </td>
                    </tr>
                </tbody>
            </table>
        </p>
    </form>
    <p>
        <asp:Label id="Label1" runat="server"></asp:Label>
    </p>
</body>
</html>

           
       








Related examples in the same category

1.Set selected Item in asp:DropDownList (VB.net)
2.On selected state changed in asp:dropdownlist (VB.net)
3.Change background color for asp:dropdownlist (VB.net)
4.Create asp:dropdownlist dynamically (VB.net)
5.Set asp:DropDownList selected index (VB.net)
6.Sort array elements and add them to the asp:dropdownlist (VB.net)
7.Add elements in an Array to asp:dropdownlist (VB.net)
8.Set asp:dropdownlist value statically (VB.net)
9.Add value to asp:DropDownList dynamically (VB.net)
10.Add values to asp:DropDownList (VB.net)
11.Selected Index Changed event for asp:DropDownList (VB.net)
12.Select the value of asp:DropDownList Selected Item (VB.net)
13.Change asp:dropdownlist fore and background color (VB.net)
14.Set font name, size and style for asp:dropdownlist (VB.net)
15.For loop controlled by dropdownlist (C#)
16.Get selected item from asp:dropdownlist (C#)
17.Use ArrayList to fill dropdown value (C#)
18.Working with the DropDownList Control and asp:SqlDataSource
19.Add ListItem to DropDownList
20.Appending Data Items
21.Depending Dropdowns
22.Dropdownlist Binded to ArrayList