public partial class _Default : System.Web.UI.Page
{
[System.Web.Services.WebMethod]
public static int AddTwoNumbers(Int32 a)
{
int addtion = a + a;
return addtion;
}
}
function sum(int a)
{
// call server side method
pagemethods.AddTwoNumbers(a);
}
Errors[color=#CC0000]1) Unknown server tag 'asp:ScriptManager'.
2)Element 'ScriptManager' is not a known element. This can occur if there is a compilation error in the Web site.