gpt4 book ai didi

c# - 如何记住 C# Web 应用程序中按钮的状态?

转载 作者:行者123 更新时间:2023-11-30 23:25:00 26 4
gpt4 key购买 nike

Visual Studio 上的一个简单网站应用程序。我在设计中做了一个按钮。我希望每次单击它时它都改变,但它只改变一次。有人可以帮我解决吗?这是代码。

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
bool click = false;
protected void button_Click(object sender, EventArgs e)
{
click = !click;
if (click == true)
butt.Text = "you clicked me!";
else
button.Text = "Click me again!";

}
}

它变为 “you clicked me!” 并且之后不会改变。

最佳答案

对服务器的每个请求都是一个新请求。页面在每次向服务器发出请求时重新实例化,因此您的变量始终初始化为 false

你应该把它放在客户端。您可以使用 ViewStateasp.net 中实现此目的:

protected void button_Click(object sender, EventArgs e)
{
if (ViewState.Contains("click") && ViewState["click"] == false)
{
ViewState["click"] = true;
butt.Text = "you clicked me!";
}
else
{
ViewState["click"] = false;
button.Text = "Click me again!";
}
}

关于c# - 如何记住 C# Web 应用程序中按钮的状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37496093/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com