string url = "https://meet66961131.adobeconnect.com/api/xml?action=common-info"; HttpWebRequest r = (HttpWebRequest)WebRequest.Create(url); r.Method = "Get"; HttpWebResponse res = (HttpWebResponse)r.GetResponse(); Stream sr = res.GetResponseStream(); StreamReader sre = new StreamReader(sr); string s = sre.ReadToEnd(); Response.Write(s);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)