1 Attachment(s)
[VB.NET]URL Encoder+Decoder
I just wrote this Very Simple encode & url decoder.
Code:
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
Program made by me: http://forum.logicalgamers.com/attac...1&d=1270229841