I have created a http handler fro my Jquery ajax call. which is working fine the jquery call is mentioned below
$.ajax({
url: \"Services/name.ashx\",
You can call any http resource from code behind using HttpWebRequest (System.Net namespace)
HttpWebRequest request = (HttpWebRequest) WebRequest.Create("/Services/name.ashx?CustMobile=ValueOfA&CustName=ValueOfB&CustEmail=ValueOfC");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
You need an absolute path but you can get your domain or server url from the HttpContext if you dont want to hardcode the domain