imagebutton-postback.aspx 431 B

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