I just wrote this Very Simple encode & url decoder.
Program made by me: http://forum.logicalgamers.com/attac...1&d=1270229841Code:Imports System.Web Public Function Encode(ByRef URL As TextBox, _ ByRef Encoded As TextBox) As Boolean Dim strEncode As String strEncode = System.Web.HttpUtility.UrlEncode(URL.Text) Encoded.Text = strEncode End Function Public Function Decode(ByRef URL As TextBox, _ ByRef Decoded As TextBox) As Boolean Dim strDecode As String strDecode = System.Web.HttpUtility.UrlDecode(URL.Text) Decoded.Text = strDecode End Function
Results 1 to 2 of 2
Thread: [VB.NET]URL Encoder+Decoder
Threaded View
- 02 Apr. 2010 05:38pm #1
[VB.NET]URL Encoder+Decoder