当我想使用Ajax在我的ASP.Net上使用静态方法保存数据时,我无法点击服务器端。但是当我把它制作成静态时,效果很好。但我需要保存数据而不需要静态。 我的代码如下。我希望使用ajax保存没有静态的数据。
public static int SaveCountry(string countryName, string countryAbout)
{
try
{
country = new Country(countryName, countryAbout);
int result = countryEntryManager.SetCountryInformation(country);
return result;
}
catch (Exception exception)
{
return 0;
}
GetCountryInformation();
}
答案 0 :(得分:0)
如果没有静态Mathod服务器,则无法进行ajax调用