New test.
[mono.git] / mcs / class / System.Web / Test / standalone / button / button-font-viewstate.aspx
1 <!-- bug 47725 -->
2 <%@ Page language="C#" %>
3 <html>
4         <head>
5                 <script runat="server">
6                 void c (object sender, EventArgs e)
7                 {
8                         b.Font.Bold = !b.Font.Bold;
9                 }
10                 </script>
11         </head>
12         <body>
13                 Clicking on this button should toggle its boldness.
14                 <br />
15                 <form runat="server">
16                         <asp:button id="b" runat="server" Text="Test" OnClick="c" />
17                 </form>
18         </body>
19 </html>