Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
More on encryption
Message
From
11/05/2006 17:24:08
 
 
To
11/05/2006 17:11:31
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
01121152
Message ID:
01121162
Views:
6
I built this small function that does it but I was wondering if there would be something builtin the .NET Framework that would accomplish the same:
    Private Function StringToHexadecimal(ByVal tcString As String) As String
        Dim lcString As String = ""
        Dim lnCounter As Integer = 0
        For lnCounter = 1 To tcString.Length
            lcString = lcString + Hex(Asc(Mid(tcString, lnCounter, 1)))
        Next
        Return lcString
    End Function
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform