Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 100472 - mono can't find System.Web.HttpUtility
Summary: mono can't find System.Web.HttpUtility
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-07-27 08:39 UTC by David Grant
Modified: 2005-07-27 08:44 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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