Hi all, new to here...
I have a tabstrip control on my page, this has a SelectedIndexChange event associated to it, which works fine.
But of course the Page_Load gets run first. All i need to know is how i can (if it all) identify that its the Tabstip control thats been clicked on to initiate the PostBack.
So something like:
if (tabstrip.SelectedIndexChange == true)
{
do something
}
but obviously i dont know how to write it properly!
or maybe
if (if_tabstrip_was_clicked == true)
hope you get what im trying to ask...
Thanks
Axum
I have a tabstrip control on my page, this has a SelectedIndexChange event associated to it, which works fine.
But of course the Page_Load gets run first. All i need to know is how i can (if it all) identify that its the Tabstip control thats been clicked on to initiate the PostBack.
So something like:
if (tabstrip.SelectedIndexChange == true)
{
do something
}
but obviously i dont know how to write it properly!
or maybe
if (if_tabstrip_was_clicked == true)
hope you get what im trying to ask...
Thanks
Axum