如何仅在第一次单击 asp:button 时执行某些代码

发布于 2024-12-21 18:49:55 字数 192 浏览 0 评论 0原文

由于我是 asp.net 的新手,我需要知道是否可以仅在网页中的 asp:button 的第一个按钮单击时执行一些代码。

实际上我的要求是我需要将 asp:check box 列表的选中值输入到数据库中,以用于 asp:button 的单击事件。我只需要第一次创建一些对象。然后我只需要向数据库添加值即可。如何识别第一次按钮点击?还有比这更有效的方法吗?

As I'm a newbie to asp.net I need to know whether there is anyway that I can execute some code only for the first button click for a asp:button in a web page.

Actually my requirement is that I need to enter checked values of a asp:check box list to database for the click event of a asp:button. I need to do some object creations only for the first time. Then I just need to add values to the database. How can I identify the first button click? If there is more efficient way than this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

锦欢 2024-12-28 18:49:55
protected void Button1_Click(object sender, EventArgs e)
{
    if (Session["Clicked"] == null)
        Session["Clicked"] = true;
    else {
        // We already ran this function once, so do other stuff from now on
        ...
        return;
    }

   // Code below this comment will be executed only on the 1st button click
   ...
}
protected void Button1_Click(object sender, EventArgs e)
{
    if (Session["Clicked"] == null)
        Session["Clicked"] = true;
    else {
        // We already ran this function once, so do other stuff from now on
        ...
        return;
    }

   // Code below this comment will be executed only on the 1st button click
   ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文