Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 100472

Summary: mono can't find System.Web.HttpUtility
Product: Gentoo Linux Reporter: David Grant <davidgrant>
Component: New packagesAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED INVALID    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description David Grant 2005-07-27 08:39:44 UTC
Try compiling the following code:

using System;
using System.Web;

class WebSearch
{
	static void Main(string[] args)
	{
	Console.Write("Please enter string to search for: ");
	string searchString = System.Web.HttpUtility.UrlEncode(Console.ReadLine());
	}
}

I get the following error: The type or namespace name `HttpUtility' could not be
found in namespace `System.Web'

I'd like to know if everyone gets this error or if it is just me.
Comment 1 David Grant 2005-07-27 08:44:57 UTC
Sorry, my fault. It's a problem with monodevelop