Set ImageUrl for asp:Image (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
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
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Asp Control » Image Button 
Set ImageUrl for asp:Image (VB.net)

<%@ Page Language="VB" %>
<script runat="server">
    Sub Button1_Click(sender As Object, e As EventArgs)
      Label3.Visible = False
      Label1.Text = Int(Rnd() 61
      Label2.Text = Int(Rnd() 61
    
      Image2.ImageUrl = "http://www.java2s.com/style/logo.png"
      Image3.ImageUrl = "http://www.java2s.com/style/logo.png"
    
      If Label1.Text = "1" And Label2.Text = "1" Then
        Label5.Text = Label4.Text
        If CInt(Label5.Text> CInt(Label6.TextThen
          Label6.Text = label5.Text
          Panel1.Visible = True
        End If
        Label4.Text = 0
        Label3.Visible = True
      Else
        Label4.Text = CInt(Label4.Text+ CInt(Label1.Text+ CInt(Label2.Text)
      End If
    End Sub
    
    Sub Button2_Click(sender As Object, e As EventArgs)
      Label6.Text = 0
    End Sub
    
    Sub Button3_Click(sender As Object, e As EventArgs)
      Panel1.Visible = False
    End Sub

</script>
<html>
<head>
</head>
<body>
    <form runat="server">
        <p>
            <asp:Label id="Label1" runat="server" Height="44px" Font-Size="X-Large" Font-Names="Verdana" BorderStyle="Solid">0</asp:Label>
            <asp:Label id="Label2" runat="server" Height="44px" Font-Size="X-Large" Font-Names="Verdana" BorderStyle="Solid">0</asp:Label>
        </p>
        <p>
            <asp:Image id="Image2" runat="server"></asp:Image>
            <asp:Image id="Image3" runat="server"></asp:Image>
        </p>
        <p>
            <asp:Label id="Label3" runat="server" Visible="False">Ooops, you did it again :(</asp:Label>
        </p>
        <p>
            <asp:Button id="Button1" onclick="Button1_Click" runat="server" Text="Hit me baby one more time..."></asp:Button>
        </p>
        <p>
            <asp:Label id="Label4" runat="server" Font-Size="X-Large" Font-Names="Verdana" ForeColor="Red">0</asp:Label>
        </p>
        <p>
            Last Score: 
            <asp:Label id="Label5" runat="server" Font-Size="X-Large" Font-Names="Verdana" ForeColor="Red">0</asp:Label>
        </p>
        <p>
            High Score: 
            <asp:Label id="Label6" runat="server" Font-Size="X-Large" Font-Names="Verdana" ForeColor="Red">0</asp:Label>
        </p>
        <p>
            <asp:Button id="Button2" onclick="Button2_Click" runat="server" Text="Reset High Scores"></asp:Button>
        </p>
        <p>
            <asp:Panel id="Panel1" style="Z-INDEX: 100; LEFT: 192px; POSITION: absolute; TOP: 421px" runat="server" Visible="False">
                <p>
                    Well done, you can now submit your high score.
                </p>
                <p>
                    Name: 
                    <asp:TextBox id="TextBox1" runat="server"></asp:TextBox>
                </p>
                <p>
                    E-mail: 
                    <asp:TextBox id="TextBox2" runat="server"></asp:TextBox>
                </p>
                <p>
                    &nbsp;<asp:Button id="Button3" onclick="Button3_Click" runat="server" Text="Submit High Score"></asp:Button>
                </p>
            </asp:Panel>
        </p>
    </form>
</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. Use Image Button event (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.