I'm working on an application where a login is required (our classes with asp.net hasn't started yet so this project is a bit weird). when i send the information by pressing the button with a onclick event the information gets sent and the login is correct, _but_ to get back to page_load i need to send the infortmation once again and that makes me feel that i've been missing something. do i have to add something in the method for my button so the page loads again or should i just post all code to make some sense? ;)
in page_load:
if(isPostBack)
{
//some code
}
in page_load:
if(isPostBack)
{
//some code
}
-
Re: question about isPostBack
Tue, October 30, 2007 - 1:43 PMnevermind. i'll solve it on my own instead.
thanks anyway -
-
Re: question about isPostBack
Thu, November 1, 2007 - 8:56 PMDid you find an answer? -
-
Re: question about isPostBack
Fri, November 2, 2007 - 3:32 AMno, had to work around the problem instead. didn't get the ispostback to work as i wanted.
-
-