System.ArgumentException: 无效的 JSON 基元:

JS

web窗体aspx

aspx.cs


using System.Web.Services;


 [WebMethod(EnableSession = true)]
        public static string Ok(string str,string str1)
        {
            
            return str+str1 ;
        }

 
data后面的数据信息一定是json的语句,不然就会报错。

你可能感兴趣的:(C#,web)