System.Web problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

For one reason or another, i can't use for example
System.Web.HttpUtility.HtmlDecode with VS 2005. Has there been made any
changes to System.Web lately?

The only System.Web-related things i can find is AspNetHostingPermission,
AspNetHostingPermissionAttribute and AspNetHostingPermissionLevel.

I'm using:
VS Version 8.0.50215.44 (beta2.050215-4400)
Microsoft Visual C# 2005 55603-000-0000016-00435
..NET Version 2.0.50215

I'd be most thankfull for any ideas on how to solve this!
 
David,

Works fine for me.


Response.Write(System.Web.HttpUtility.HtmlDecode(">"));

Gives me a >


I've got the same versions ov VS & .net beta 2 as you.

John
 
David said:
For one reason or another, i can't use for example
System.Web.HttpUtility.HtmlDecode with VS 2005. Has there been made any
changes to System.Web lately?

What do you mean you can't use it? Do you get an error? Have you
included any necessary Imports statements (using in C#) at the top of
your code?

A little more detail about your problem would be helpful.
 
Thank you for your responses!

It turned out my VS was in some way corrupt. A reinstallation solved the
problem.

Thank you!
/David
 
Back
Top