Using ASP to respond with raw data.?

imported_jimbot

New member
You should be able to set the contenttype to "text/plain" or something (I never did much asp.net but with vanilla asp it was)
response.contenttype = "text/plain"

You can also use response.binarywrite instead of response.write if you are having troubles with text getting converted to unicode or whatever.

You can definitely send raw data using asp.net, otherwise many web services wouldn't work.
 
I'm not an ASP developer but I need some assistance regarding the language. I'm told that there isn't a way to send raw data using ASP.net, but I need to respond to a POST request sent from jQuery. I just need to send back a simple string. Is this possible?
 
Back
Top