如何从ajax调用wcf web服务?

时间:2013-04-26 06:19:20

标签: c# ajax wcf

我需要从ajax调用wcf服务。我的Web服务类如下所示

public class AjaxService : IAjaxService
    {
        readonly Dictionary<string,int> _countryPostalCode = new Dictionary<string, int>
                                                        {
                                                            {"Bangladesh",1000},
                                                            {"India",2000},
                                                            {"Japan",3000}
                                                        };

        public int PostalCode(string countryName)
        {
            return _countryPostalCode[countryName];
        }
    }

如何从ajax中调用它?如果有人用例子解释它,对我来说将非常有帮助。