HttpUtility from WinForm?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kwele

    #1

    HttpUtility from WinForm?

    I need to use the HttpUtility.Url Encode method in a winform. However,
    the HttpUtility class is not available in intellisense from
    System.Web. What do I need to do to be able to use this method?

    TIA
  • Jon Skeet [C# MVP]

    #2
    Re: HttpUtility from WinForm?

    kwele <kwele10@yahoo. com> wrote:[color=blue]
    > I need to use the HttpUtility.Url Encode method in a winform. However,
    > the HttpUtility class is not available in intellisense from
    > System.Web. What do I need to do to be able to use this method?[/color]

    You need to add a reference to the System.Web.dll assembly.

    --
    Jon Skeet - <skeet@pobox.co m>
    Pobox has been discontinued as a separate service, and all existing customers moved to the Fastmail platform.

    If replying to the group, please do not mail me too

    Comment

    Working...