I have written one simple web service which get product list in JSONText which is string object
Web Service code is below
using System; using Syste
Actually, if you just remove the
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
from the method, and you return the jsonString that you serialized using the JavaScriptSerializer you will get exactelly the output that you were looking for.