Well, there is nothing wrong with seeing XML tags on the response however you can also do
the following.
1. In your page's script manager add reference to your web service
(This should be included inside your scriptmanager tag : <asp:ServiceReference Path="~\YourService.asmx" /> )
2. Call yor web method from your page's client side <YourService>.<YourMethodName>(<yourparameter>,onSuccess, onError)
while onSuccess and onError are two callbacs invoked on seccess / error respectively.
3. At your onSeccuss function you can do the following:
function onSuccess(result)
{
alert(result);
{
and the returned string will apear.
Ran.
http://blogs.microsoft.co.il/blogs/ranw