Fixes recursion bug in disambiguate_in().
[ohcount] / test / src_dir / cs.aspx
1 <%@ Page Language="C#" %>
2 <html>
3 <script runat="server">
4 void Button1_Click(object sender, System.EventArgs e)
5 {
6     Label1.Text = ("Welcome, " + TextBox1.Text);
7 }
8 </script>
9 <head runat="server">
10   <title>Basic ASP.NET Web Page</title>
11 </head>
12 <body>
13   <%if( ViewData["Message"] != null ){ %>
14     <h3 style="color:Red"><%=ViewData["Message"]%></h3><br />
15   <% } %>
16   <form id="form1" runat="server">
17     <h1>Welcome to ASP.NET</h1>
18     <p>Type your name and click the button.</p>
19     <p>
20       <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
21       <asp:Button ID="Button1" runat="server"
22         Text="Click" OnClick="Button1_Click" />
23     </p>
24     <p>
25       <asp:Label ID="Label1" runat="server"></asp:Label>
26     </p>
27   </form>
28 </body>
29 </html>