Convert String to ToBase64ToString method

Was recently trying to find a method to encode a string using ToBase64ToString method in the System.Convert class. The .NET framework makes life so easy when doing such complicated things for newbies like me![code]Dim strSomething As String = "SomeCoolString" Dim myByteArray As Byte() Dim a As New System.Text.ASCIIEncoding() myByteArray= a.GetBytes(strSomething ) Dim myZZTop As String myZZTop = System.Convert.ToBase64String(myByteArray, 0, myByteArray.Length) ...

Contributed by
Rating: 3 stars3 stars3 stars3 stars3 stars / 2
May 14, 2003
Rate this Article:
MEH MEH++


SEARCH ASP FREE
TOOLS YOU CAN USE

advertisement
Was recently trying to find a method to encode a string using ToBase64ToString method in the System.Convert class. The .NET framework makes life so easy when doing such complicated things for newbies like me!


Dim strSomething As String "SomeCoolString"
  
Dim myByteArray As Byte()
  
Dim a As New System.Text.ASCIIEncoding()

  
myByteArraya.GetBytes(strSomething )

  
Dim myZZTop As String
  myZZTop 
System.Convert.ToBase64String(myByteArray0myByteArray.Length)

[bold]Want to decrypt it! Here is the code[/bold]


Imports System.Text
 
Function DecryptZZString(myZZTop as string) as String

  Dim objUTF8 
As New UTF8Encoding()
  
DecryptZZStringobjUTF8.GetString(Convert.FromBase64String(myZZTop))
 
End Function

blog comments powered by Disqus
ASP.NET CODE ARTICLES

- How to Use the ListBox Control in ASP.NET 2.0
- How to Load XML Documents in ASP.NET 2.0
- DataGrid Code
- ASP.NET Guestbook
- User Controls and Client Side Scripting
- ASP.NET Programming with Microsoft's AS...
- ASP.NET Basics (part 3): Hard Choices
- ASP.NET Basics (part 2): Not My Type
- ASP.NET Basics (part 1): Nothing But .Net
- Directory Tree Browser
- How to get the confirmation of Yes/No from a...
- Complete example using custom errors and wri...
- Paging Certain # records per page .NET style
- General Methods of formatting and Subtractin...
- .NET LinkButton web control

ASP Web Hosting ASP.Net Web Hosting Windows Web Hosting
 
 
 

ASP Free Forums 
 RSS  Tutorials RSS
 RSS  Forums RSS
 RSS  All Feeds
Site Map 
Request Media Kit
Write For Us Get Paid 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Privacy Policy 
Support 


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 6 - Follow our Sitemap
Most Popular Topics
All ASP.Net Tutorials