New test.
[mono.git] / mcs / class / System.Web / Test / standalone / imagebutton / imagebutton-postback.aspx
1 <%@ Page Language="C#" %>
2 <script runat="server">
3         void btnclick (object s, ImageClickEventArgs ea)
4         {
5                 txt.Text = "PASS";
6         }
7 </script>
8
9 <html>
10 <body>
11         Click the button and a message will appear: <asp:label id="txt" runat="server" />
12         <form runat="server">
13               <asp:imagebutton imageurl="http://www.novell.com/common/img/hdr_logo_pf.gif" alternatetext="click here" onclick="btnclick" runat="server"/> 
14         </form>
15 </body>
16 </html>