Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test3.aspx « Test « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8776e45f4864db52546434e45d1067bc5470146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ Page Debug="true" %>
<html>
<script runat=server language="vb">

Sub AnchorBtn_Click(Source As Object, E as EventArgs)
          Message.InnerText = Message.InnerHtml
       End Sub

    </script>

<body>
<form method=post runat=server>

<a OnServerClick="AnchorBtn_Click" runat=server> Click here at your peril.</a>

<h1>
<span id="Message" runat=server><span id="Message2" runat=server>narf</span></span>
</h1>

</form>
</body>
</html>