Use Image Button event (VB.net) : Image Button « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
ASP.Net » Asp Control » Image Button 
Use Image Button event (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. Determining the Coordinates Clicked on the Image of an ImageButton Control (VB.net)
2. Simple ImageButton control (VB.net)
3. asp:ImageButton AlternateText (VB.net)
4. For loop inside asp:ImageButton Click event (VB.net)
5. Set ImageUrl for asp:Image (VB.net)
6. Deal with button action event arguments: x, y coordinates (C#)
7. Get Image Button mouse cursor coordinates (C#)
w_w__w_._ja__v_a2_s_._c_o___m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.