Click here to Skip to main content
15,905,776 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Rich Text Box in ASP.NET Pin
Abhijit Jana16-Aug-09 10:32
professionalAbhijit Jana16-Aug-09 10:32 
GeneralRe: Rich Text Box in ASP.NET Pin
pampam11017-Aug-09 9:42
pampam11017-Aug-09 9:42 
GeneralRe: Rich Text Box in ASP.NET Pin
Blue_Boy16-Aug-09 16:17
Blue_Boy16-Aug-09 16:17 
GeneralRe: Rich Text Box in ASP.NET Pin
Abhijit Jana16-Aug-09 21:04
professionalAbhijit Jana16-Aug-09 21:04 
GeneralRe: Rich Text Box in ASP.NET Pin
Blue_Boy17-Aug-09 3:36
Blue_Boy17-Aug-09 3:36 
GeneralRe: Rich Text Box in ASP.NET Pin
Abhijit Jana17-Aug-09 4:04
professionalAbhijit Jana17-Aug-09 4:04 
QuestionData type Byte conversion... Pin
greendragons16-Aug-09 9:14
greendragons16-Aug-09 9:14 
AnswerRe: Data type Byte conversion... Pin
Abhishek Sur16-Aug-09 9:34
professionalAbhishek Sur16-Aug-09 9:34 
Use this Code below

string str = textbox1.Text;
string encstr = Convert.ToBase64String(System.Text.Encoding.Unicode.GetBytes(str));
string decstr = System.Text.Encoding.Unicode.GetString(Convert.FromBase64String(encstr));


encstr represents the base64 encrypted string which you can pass between pages, and decstr is the string decryption. Rose | [Rose]

Abhishek Sur

My Latest Articles
Create CLR objects in SQL Server 2005
C# Uncommon Keywords
Read/Write Excel using OleDB

Don't forget to click "Good Answer" if you like to.

GeneralRe: Data type Byte conversion... Pin
greendragons16-Aug-09 9:46
greendragons16-Aug-09 9:46 
GeneralRe: Data type Byte conversion... Pin
Abhishek Sur16-Aug-09 9:51
professionalAbhishek Sur16-Aug-09 9:51 
GeneralRe: Data type Byte conversion... Pin
greendragons16-Aug-09 10:01
greendragons16-Aug-09 10:01 
GeneralRe: Data type Byte conversion... Pin
Abhijit Jana16-Aug-09 10:33
professionalAbhijit Jana16-Aug-09 10:33 
Questionis it possible to fix the text font size without the impact from the setting textsize in the internet explore setting? Pin
Seraph_summer16-Aug-09 6:31
Seraph_summer16-Aug-09 6:31 
AnswerRe: is it possible to fix the text font size without the impact from the setting textsize in the internet explore setting? Pin
Not Active16-Aug-09 6:46
mentorNot Active16-Aug-09 6:46 
Questionhow to adapt the image width to a computer screen width Pin
Seraph_summer16-Aug-09 6:28
Seraph_summer16-Aug-09 6:28 
AnswerRe: how to adapt the image width to a computer screen width Pin
Abhishek Sur16-Aug-09 6:37
professionalAbhishek Sur16-Aug-09 6:37 
GeneralRe: how to adapt the image width to a computer screen width Pin
Seraph_summer16-Aug-09 8:07
Seraph_summer16-Aug-09 8:07 
GeneralRe: how to adapt the image width to a computer screen width Pin
Abhishek Sur16-Aug-09 9:25
professionalAbhishek Sur16-Aug-09 9:25 
GeneralRe: how to adapt the image width to a computer screen width Pin
Seraph_summer16-Aug-09 10:25
Seraph_summer16-Aug-09 10:25 
GeneralRe: how to adapt the image width to a computer screen width Pin
Abhishek Sur16-Aug-09 10:31
professionalAbhishek Sur16-Aug-09 10:31 
QuestionHow to attach a DB to SQL Server ? Pin
comp_j16-Aug-09 5:41
comp_j16-Aug-09 5:41 
AnswerRe: How to attach a DB to SQL Server ? Pin
Abhijit Jana16-Aug-09 5:51
professionalAbhijit Jana16-Aug-09 5:51 
GeneralRe: How to attach a DB to SQL Server ? Pin
comp_j16-Aug-09 7:31
comp_j16-Aug-09 7:31 
AnswerRe: How to attach a DB to SQL Server ? Pin
Abhishek Sur16-Aug-09 10:10
professionalAbhishek Sur16-Aug-09 10:10 
Questionchecking a radio button programmatically Pin
mbams16-Aug-09 4:36
mbams16-Aug-09 4:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.