I have a button( btnLogOut)in my master page. In page_load event of this master page I want
to verify if the button is clicked or not.
How can I do that.
Thanks in advance.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Reena SajithPosted May 21, 2007, 7:55 AM
declare a public flag.
say flag=false;
on buttonclick event make flag=true;
in page load check for the flag
if true(button clicked)
else(not clicked)