In the following code:
for (int line = 0; line < CHUNKSTOBEFOUND; line++) {
nvc.Add ("search", System.Web.HttpUtility.UrlEncode (stringsToSearchFor[line]));
}
I get told namespace name HttpUtility does not exist. http://msdn.microsoft.com/en-us/library/system.web.httputility.aspx seems to indicate I should use System.Web. I've tried using that, but I STILL get the error. Is there something else I'm supposed to include or use?