I have created user control, in that user control i have one method and I want to call this method in .aspx. I have registered this user control in aspx
For example: Below is method in user control.
public void SetGridData()
{
}
I want to call above method in .aspx.cs file. How can we call this method?