Thank you for your help! I have tried this way, but it can only cause postback. How can I let the specific C# method executed? As my above example, there is a method in my code-behind C# file:
public partial class Sample
{
//......
protected void ServerFunction()
{
//some code for this method here.
}
}
How can I let the program exacute the ServerFunction() after the postback?