Hi, I'm having a problem with a button..what i wanted to happen is if the "Submit" button has being pressed then find the button and perform that code within it else just do another function.
if (btnSubmit.Something == true)
{
Buttton btn = (Button)FindControl("btnSubmit");
btnSubmit_Click(btn,e)
}
else
{
Fillmemberdeatails();
}
the something is where the problem lies...i dont no what should go there
Thank You
if (btnSubmit.Something == true)
{
Buttton btn = (Button)FindControl("btnSubmit");
btnSubmit_Click(btn,e)
}
else
{
Fillmemberdeatails();
}
the something is where the problem lies...i dont no what should go there
Thank You