using System.Net;
public string getURLSource(string strUrl)
{
WebClient webClient = new WebClient();
byte[] reqHTML;
reqHTML = webClient.DownloadData(strUrl);
UTF8Encoding objUTF8 = new UTF8Encoding();
string str = objUTF8.GetString(reqHTML);
return str;
}
Using a SCORM Wrapper to Simplify the Workflow
4 months ago
No comments:
Post a Comment