Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to ignore case sensitiveness of jquery ajax call url
04-12-2013, 11:17 AM
Post: #1
How to ignore case sensitiveness of jquery ajax call url
i am working on Asp.net 3.5 project and i am calling a webservice by ajax call

$.ajax({
type: "Post",
contentType: "application/json; charset=utf-8",
url: "WebService/DefaultPage.asmx/GetTours",
dataType: "json",
success: function (data) {
Home.ReadTours(data);
},
error: function (result) {
$('.load-3').hide();
}
});

working fine..

but when i change the url to lowercase..

url: "webservice/defaultpage.asmx/gettours",

its not working.

Is this Jquery Ajax URL is case sensitive and is there any by i can ignore case sensitiveness of ajax url..
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)