IT Community - Software Programming, Web Development and Technical Support

How to Encode a text and Decode it to get the original text using c# .Net?

This is a discussion on How to Encode a text and Decode it to get the original text using c# .Net? within the C# Programming forums, part of the Software Development category; How to Encode a text and Decode it to get the original text using c# .Net?...


Go Back   IT Community - Software Programming, Web Development and Technical Support > Software Development > C# Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 07-21-2007, 12:44 AM
Archer Archer is offline
D-Web Programmer
 
Join Date: Jun 2007
Posts: 52
Archer is on a distinguished road
Question How to Encode a text and Decode it to get the original text using c# .Net?

How to Encode a text and Decode it to get the original text using c# .Net?
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-21-2007, 01:10 AM
oxygen oxygen is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 633
oxygen is on a distinguished road
Default Re: How to Encode a text and Decode it to get the original text using c# .Net?

Hi Archer.. Here is the answer for your query..

This encode function will encode a string and then convert it into base64 string.
public string Encode(string str)
{
byte[] encbuff = System.Text.Encoding.UTF8.GetBytes(str);
return Convert.ToBase64String(encbuff);
}

The Decode function will retrieve the string from the base64 string.
public string Decode(string str)
{
byte[] decbuff = Convert.FromBase64String(str);
return System.Text.Encoding.UTF8.GetString(decbuff);
}
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
What is Hidden Text? H2o Search Engine Optimization 2 12-19-2007 04:15 PM
Text Box in PHP varghese PHP Programming 2 11-09-2007 11:24 PM
How do I check that text entered in a text form field is an integer? itbarota HTML, CSS and Javascript Coding Techniques 2 10-26-2007 12:25 AM
What is encode & decode function in Javascript? raj HTML, CSS and Javascript Coding Techniques 1 07-28-2007 01:11 AM
CSS Text Blur muthukumar HTML, CSS and Javascript Coding Techniques 0 07-17-2007 01:22 PM


All times are GMT -7. The time now is 10:24 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0