⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statebag.aspx

📁 asp.net技术内幕的书配源码
💻 ASPX
字号:
<%@ Page Language="C#"%>

<script runat="server">

void Button_Click( Object s, EventArgs e ) 
{
	if (ViewState["TotalCount"]==null)
		ViewState["TotalCount"]=0;
	int totalCount = (int)ViewState["TotalCount"];
	totalCount+=1;
	ViewState["TotalCount"]=totalCount;
	if (totalCount == 5) 
	{
		lblCount.Text = "You clicked 5 times!";
	}
}

</Script>

<html>
<head><title>StateBag.aspx</title></head>
<body>

<form Runat="Server">

<asp:Button
  Text="Click Here"
  OnClick="Button_Click"
  Runat="Server" />

<p>
<asp:Label
  ID="lblCount"
  Runat="Server" />

</form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -