March 2018
Beginner to intermediate
410 pages
10h 40m
English
Returning text-based responses is easy. The HttpResponse class derives from TextWriter. There are some things you need to keep in mind, however:
We begin our response as follows:
private void ReturnMomentaryAsXml(HttpRequest Request, HttpResponse Response) { Response.ContentType = "application/xml"; Response.Write("<?xml version='1.0' encoding='"); Response.Write(Response.Encoding.WebName); ...Read now
Unlock full access