I am using JQuery ajax jsonp. I have got below JQuery Code:
$.ajax({
type:\"GET\",
url: \"Login.aspx\", // Send
You can't POST using JSONP...it simply doesn't work that way, it creates a element to fetch data...which has to be a GET request. There's not much you can do besides posting to your own domain as a proxy which posts to the other...but user's not going to be able to do this directly and see a response though.