G
Gunawan
I have define event handler call btnFind_Click
protected void btnFind_Click(object sender, EventArgs e)
{
....
}
What I want to do is calling this function from another function.
what should I do with the parameters coz I can't call this function using
btnFind_Click();
TIA
Gun
protected void btnFind_Click(object sender, EventArgs e)
{
....
}
What I want to do is calling this function from another function.
what should I do with the parameters coz I can't call this function using
btnFind_Click();
TIA
Gun