本文概述
- 例
这是一个服务器端控件,asp提供了自己的标签来创建它。下面给出示例。
<
asp:ButtonID="Button1" runat="server" Text="Submit" BorderStyle="Solid" ToolTip="Submit"/>
服务器将其呈现为HTML控件,并向浏览器生成以下代码。
<
input name="Button1" value="http://www.srcmini.com/Submit" id="Button1" title="Submit" style="border-style:Solid;
" type="submit">
该控件具有自己的属性,如下表所示。
属性 | 描述 |
---|---|
AccessKey | 用于设置控件的键盘快捷键。 |
TabIndex | 控件的制表符顺序。 |
BackColor | 用于设置控件的背景色。 |
BorderColor | 用于设置控件的边框颜色。 |
BorderWidth | 用于设置控件边框的宽度。 |
Font | 用于设置控制文本的字体。 |
ForeColor | 用于设置控件文本的颜色。 |
Text | 它用于设置要为控件显示的文本。 |
ToolTip | 当鼠标悬停在控件上时, 它将显示文本。 |
Visible | 在窗体上设置控件的可见性。 |
Height | 用于设置控件的高度。 |
Width | 用于设置控件的宽度。 |
<
%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebControls.aspx.cs"
Inherits="WebFormsControlls.WebControls" %>
<
!DOCTYPE html>
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<
title><
/title>
<
/head>
<
body>
<
form id="form1" runat="server">
<
div>
<
asp:Button ID="Button1" runat="server" Text="Click here" OnClick="Button1_Click" />
<
/div>
<
/form>
<
br />
<
asp:Label ID="Label1" runat="server"><
/asp:Label>
<
/body>
<
/html>
背后的代码
【asp.net按钮】// WebControls.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebFormsControlls
{
public partial class WebControls : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = "You Clicked the Button.";
}
}
}
输出:
它产生以下输出。
文章图片
单击该按钮将显示一条消息,如下所示。
文章图片
推荐阅读
- asp.net超链接
- asp.net文本框
- asp.net标签
- asp.net服务器控件
- asp.net web表单示例
- asp.net web表单项目
- asp.net web表单介绍
- asp.net生命周期
- asp.net web表单特性