Klawztro 3 Denunciar post Postado Dezembro 10, 2010 Gente, e ai, tudo certo? Como faço para acessar meu webmethod por javascript?? Não to conseguindo. Alguem pode me dar uma mão? Segue codigo: $(document).ready(function () { $(".barraPesquisa").blur(function () { var nome = new String(); nome = $(this).attr('value') if (nome.length > 3) { PageMethods.GetList(nome, final, erro); alert('alalalal'); } function final(data) { alert(data); } function erro(error, userContext, methodName) { if (error !== null) alert("An error occurred: " + error.get_message()); } //End of function with error in ajax. }); }); public class Service : WebService { [WebMethod()] public static string GetList(string obj) { /* *<sumary> * This function recieve a string, * and search if this name be in use. *</sumary> */ string teste = "teste"; return teste; } } vlw Compartilhar este post Link para o post Compartilhar em outros sites
quintelab 91 Denunciar post Postado Dezembro 11, 2010 http://www.quintelab.com.br/Artigos/Json.asp Abraços... Compartilhar este post Link para o post Compartilhar em outros sites