I am having a problem similar to this: https://forums.xamarin.com/discussion/6319/problem-with-webview-and-url
Using a UIWebView, I am trying to pass a URL with a querystring. The URI looks like this: "Content/Content/holder.html/?contentpath=/test.html"
Without the querystring, the document displays correctly. However, with the querystring, I get the following error:
Error Domain=NSURLErrorDomain Code=-1100 "The requested URL was not found on this server."
It seems as though it's not separating the query string.
I've read some C solutions, but I can't manage to reflect that in my C# solution; particularly
NSString *URLString = [url absoluteString];
NSString *queryString = @"?param1=1";
NSString *URLwithQueryString = [URLString stringByAppendingString: queryString];