I'm trying to access web service that written in .net. But I identified there is a problem with my javascript code. But I can't identify what it is. Any body plz help me...
This is my JS code
function getID() {
var id = document.getElementById("Text1").value;
WebApplication4.myWebService1.getDetails(id, getSMSSucsess); // The problem I think..
}
function getSMSSucsess(result) {
document.getElementById("myDev").value = result["status"];
}