您的位置:首页 > 编程语言 > ASP

Web Server Controls->ASP.NET Button Control

2007-03-27 08:47 591 查看

Definition and Usage

The Button control is used to display a push button. The push button may be a submit button or a command button. By default, this control is a submit button.

A submit button does not have a command name and it posts the Web page back to the server when it is clicked. It is possible to write an event handler to control the actions performed when the submit button is clicked.

A command button has a command name and allows you to create multiple Button controls on a page. It is possible to write an event handler to control the actions performed when the command button is clicked.

Properties

PropertyDescription
CausesValidationBy default, a page is validated when a Button control is clicked. To prevent a page from being validated when clicking on a Button control, set this property to "false"
CommandArgumentAdditional information about the command to perform
CommandNameThe command associated with the Command event
idA unique id for the control
OnClickThe name of the function to be executed when the button is clicked
runatSpecifies that the control is a server control. Must be set to "server"
TextThe text on the button

Examples

Button
ASPX Source:

<script runat="server">
Sub submit(Source As Object, e As EventArgs)
button1.Text="You clicked me!"
End Sub
</script>

<html>
<body>

<form runat="server">
<asp:Button id="button1" Text="Click me!" runat="server" OnClick="submit" />
</form>

</body>
</html>

Output Result:

IF you click the button ,it will shows:

In this example we declare a submit Button control in an .aspx file. Then we create an event handler for the Click event which changes the text on the button.

Button 2
ASPX Source:

<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")="hand"
button1.Style("font-family")="verdana"
button1.Style("font-weight")="bold"
button1.Style("font-size")="14pt"
button1.Text="You clicked me!"
End Sub
</script>

<html>
<body>

<form runat="server">
<asp:Button id="button1" Text="Click me!" runat="server" OnClick="submit" />
</form>

</body>
</html>

Output Result:


IF you click the button ,it will shows :

In this example we declare a submit Button control in an .aspx file. Then we create an event handler for the Click event which changes the text and the style of the button.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: