asp.net - how to create JSON webservice, can Anyone refer any tutorial for this -


i cant able find out correct soltion . our client android , iphone. need create webservice these 2 client. dont know single step this. please 1 refer tutorial website or guide me.i using .asmx form.and use c#

at high level, simple. instead of returning html code in response http or post, return json string. real question how create json string object want send.

there several libraries can take object , return json string. in python can use

return simplejson.dumps(<<object name>>)  

in php,

echo json_encode(<<object name>>); 

which language using?


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -