⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmlbutton.aspx

📁 几个不错的ASP.NTE例子
💻 ASPX
字号:
<Script Language="C#" Runat="Server">
public void Button1_Click(Object sender,EventArgs e)
{
	Response.Redirect("http://www.hotmail.com");
}
</script>
<html>
<head>
<title>HtmlButton控件</title>
</head>
<body>
<center>
显示HtmlButton控件的应用
<hr>
<form runat="server">
<button id="button1" runat=server 
style="font:12pt;background-color:black;color:white;"
onmouseover="this.style.backgroundColor='white';this.style.color='black';"
onmouseout="this.style.backgroundColor='black';this.style.color='white';"
OnServerClick="Button1_Click">
点击我的邮箱HOTMAIL.COM
</button>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -