Fixes recursion bug in disambiguate_in().
[ohcount] / test / expected_dir / vb.aspx
1 visualbasic     code    <%@ Page Language="VB" %>
2 html    code    <html>
3 html    code    <script runat="server">
4 visualbasic     code        Sub Button1_Click(ByVal sender As Object, _
5 visualbasic     code            ByVal e As System.EventArgs)
6 visualbasic     code            Label1.Text = "Welcome, " & TextBox1.Text
7 visualbasic     code        End Sub
8 html    code    </script>
9 html    code    <head runat="server">
10 html    code      <title>Basic ASP.NET Web Page</title>
11 html    code    </head>
12 html    code    <body>
13 html    code      <form id="form1" runat="server">
14 html    code        <h1>Welcome to ASP.NET</h1>
15 html    code        <p>Type your name and click the button.</p>
16 html    code        <p>
17 html    code          <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
18 html    code          <asp:Button ID="Button1" runat="server" 
19 html    code            Text="Click" OnClick="Button1_Click" />
20 html    code        </p>
21 html    code        <p>
22 html    code          <asp:Label ID="Label1" runat="server"></asp:Label>
23 html    code        </p>
24 html    code      </form>
25 html    code    </body>
26 html    code    </html>