ASP.NET HTML 控件 Button 2
asp.net html 控件 button 2
<script runat="server">
sub submit(source as object, e as eventargs)
button1.style("background-color")="#0000ff"
button1.style("color")="#ffffff"
button1.style("width")="200px"
button1.style("cursor")="pointer"
button1.style("font-family")="verdana"
button1.style("font-weight")="bold"
button1.style("font-size")="14pt"
button1.text="you clicked me!"
end sub
</script>
<!doctype html>
<html>
<body>
<form runat="server">
<asp:button id="button1" text="click me!" runat="server" onclick="submit" />
</form>
</body>
</html>
sub submit(source as object, e as eventargs)
button1.style("background-color")="#0000ff"
button1.style("color")="#ffffff"
button1.style("width")="200px"
button1.style("cursor")="pointer"
button1.style("font-family")="verdana"
button1.style("font-weight")="bold"
button1.style("font-size")="14pt"
button1.text="you clicked me!"
end sub
</script>
<!doctype html>
<html>
<body>
<form runat="server">
<asp:button id="button1" text="click me!" runat="server" onclick="submit" />
</form>
</body>
</html>
相關(guān)文章
- ASP.NET
- ASP.NET Web Pages 幫助器
- ASP.NET Web Pages 圖表
- ASP.NET Web Pages WebMail 參考手冊(cè)
- ASP.NET Razor 標(biāo)記
- ASP.NET Razor 語(yǔ)法
- ASP.NET Razor C# 循環(huán)和數(shù)組
- ASP.NET 數(shù)據(jù)綁定
- ASP.NET 母版頁(yè)
- ASP.NET 實(shí)例
- ASP.NET HyperLink 控件
- ASP.NET Literal 控件
- WebSecurity CurrentUserName 屬性
- WebSecurity HasUserId 屬性
- WebSecurity IsAuthenticated 屬性
- WebSecurity CreateUserAndAccount 方法
- WebSecurity GeneratePasswordResetToken 方法
- WebSecurity InitializeDatabaseConnection 方法
- WebSecurity IsConfirmed 方法
- WebSecurity RequireUser 方法