IsPostBack在当前上下文中不存在

时间:2015-07-27 15:54:14

标签: c# winforms ispostback

所以基本上我需要在我的Windows窗体c#应用程序中检查if(!IsPostBack),因为在从文本框中获取值后,一旦它不再抓取该值而是给出null。但是我收到了错误。错误:

The name IsPostBack does not exist in the current context

我有:

using System.Web.UI;

所以我不确定为什么会这样。任何见解或解决方案都将非常感谢,谢谢。

这是我的代码:

        if(!IsPostBack)
            System.Console.WriteLine("Text: " + textBox2.Text);
            MakeSureFieldIsFilledIn errormessagefieldempty = new MakeSureFieldIsFilledIn();
            errormessagefieldempty.ShowDialog();
        }

1 个答案:

答案 0 :(得分:0)

根据您尝试做的事情,您应该将此代码段移至事件处理程序。