I got an old Program(class library) developed by .Net 2. Recently I want to use that Program in new project which is use .Net4(For new WPF feature's ). so there is a big problem:
.Net4 don’t support System.Web and as result it can’t be use Httputility.urldecode!!
So what is urldecode jop? and how can I change that to something, which is support by .Net4?
If you really have to run against the client profile (which doesnt include HttpUtility) then you could check this Alternative to HttpUtility for .NET 3.5 SP1 client framework?. (That question is about 3.5 sp1 but nothing has changed in this regard in 4.0)
You really should see if you can’t just use the full framework though.