Home > Back-end >  How to use HttpUtility Class in Methods
How to use HttpUtility Class in Methods

Time:01-11

I am currently using vb.net and .net 6, I would like to know how can I apply HttpUtility Class

Methods with the implementation.

CodePudding user response:

In VB and Net 6, it works natively

I tested for example :

Dim UrlEncodedOutput = System.Web.HttpUtility.UrlEncode(your_string_to_encode)  
  • Related