ASP.NET HTML 控件 Textbox 2
asp.net html 控件 textbox 2
<script runat="server">
sub submit(sender as object, e as eventargs)
lbl1.text=txt1.text
end sub
</script>
<!doctype html>
<html>
<body>
<form runat="server">
<asp:textbox id="txt1" text="hello world!"
font_face="verdana" backcolor="#0000ff"
forecolor="white" textmode="multiline"
height="50" runat="server" />
<asp:button onclick="submit"
text="copy text to label" runat="server" />
<p><asp:label id="lbl1" runat="server" /></p>
</form>
</body>
</html>
相关文章
- ASP.NET Web Pages 帮助器
- ASP.NET Web Pages 图表
- ASP.NET MVC Web 应用程序
- ASP.NET MVC 页面和布局
- ASP.NET MVC 数据库
- ASP.NET Web 页面
- ASP.NET Button 控件
- ASP.NET RangeValidator 控件
- ASP.NET Image 控件
- ASP.NET ImageButton 控件
- ASP.NET BulletedList 控件
- WebSecurity CurrentUserName 属性
- WebSecurity GetCreateDate 方法
- WebSecurity RequireRoles 方法
- WebSecurity ResetPassword 方法
- WebSecurity UserExists 方法
- HTML Inputbutton
- ASP.NET HTML 控件 DataList
- ASP.NET HTML 控件 DropdownList
- ASP.NET HTML 控件 Table