案例:ASP.net案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<script runat="server">
3
Sub change(sender As Object, e As EventArgs)
4
lbl1.Text="You changed text to " & txt1.Text
5
End Sub
6
</script>
7
8
<html>
9
<body>
10
11
<form runat="server">
12
Enter your name:
13
<asp:TextBox id="txt1" runat="server"
14
text="Hello World!"
15
ontextchanged="change" autopostback="true"/>
16
<p><asp:Label id="lbl1" runat="server" /></p>
17
</form>
18
19
</body>
20
</html> 
21