?? htmlbutton.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 + -