asp.net环境下web api接口接收参数方法
asp.net环境下web api接口接收参数方法public static string GetRequestString(string name, string defaultValue){ string result = defaultValue; if (HttpContext.Current != null &&am...