Got isPostBack is not declared in Form_Load.

danyeungw

Well-known member
Joined
Aug 30, 2005
Messages
73
Programming Experience
10+
I tried to use not isPostBack in Form_Load and got isPostBack is not declared. What did I misss? I am using Visual Studio 2005. Thanks.

DanYeung
 
Since you post in Windows Forms forum and say you use Visual Studio 2005, as opposed to Visual Web Developer, I have a strong feeling you don't know the difference between windows and web development, sometimes talked about as winforms and webforms. isPostBack is only used in ASP web development, it is a property of Page class in System.Web.UI namespace, and the postback terminology is also only relevant in such stateless development environment as the web.
 
Back
Top