【发布时间】:2018-02-13 13:54:38
【问题描述】:
WebForm1.aspx.cs
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
private int n = 0;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
++n;
Button1.Text = n.ToString();
}
}
}
WebForm1.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!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" OnClick="Button1_Click" Text="Button" />
</div>
</form>
</body>
</html>
'n'改变一次
谢谢 ///////////////////////////////////////// ///////////////////////////////////////// ///////////////////////////////////////// ////
【问题讨论】:
-
做一些关于 ASP.NET 的基本阅读