Click here to Skip to main content
15,900,258 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: problem in storing hindi font in database Pin
Ravi_2118-Nov-07 22:39
Ravi_2118-Nov-07 22:39 
GeneralRe: problem in storing hindi font in database Pin
Paul Conrad23-Dec-07 14:55
professionalPaul Conrad23-Dec-07 14:55 
QuestionHow to Decrypt the Password From SqlServer2005 Pin
mrgaddam18-Nov-07 18:12
mrgaddam18-Nov-07 18:12 
AnswerRe: How to Decrypt the Password From SqlServer2005 Pin
Michael Sync18-Nov-07 18:31
Michael Sync18-Nov-07 18:31 
GeneralRe: How to Decrypt the Password From SqlServer2005 Pin
N a v a n e e t h18-Nov-07 19:06
N a v a n e e t h18-Nov-07 19:06 
GeneralRe: How to Decrypt the Password From SqlServer2005 Pin
Michael Sync19-Nov-07 4:37
Michael Sync19-Nov-07 4:37 
GeneralRe: How to Decrypt the Password From SqlServer2005 Pin
Michael Sync19-Nov-07 5:29
Michael Sync19-Nov-07 5:29 
AnswerRe: How to Decrypt the Password From SqlServer2005 Pin
Naik A2Ze18-Nov-07 18:37
Naik A2Ze18-Nov-07 18:37 
Hi ..Frd....once try this code...this is decryption..Rose | [Rose]


private string Decrypt(string strText, string sDecrKey)
{
byte[] byKey;
byte[] IV = {18, 52, 86, 120, 144, 171, 205, 239};

byte[] inputByteArray;
// inputByteArray.Length = strText.Length;

try
{
byKey = System.Text.Encoding.UTF8.GetBytes(sDecrKey.Substring(0, 8));
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
inputByteArray = Convert.FromBase64String(strText);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(byKey, IV), CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
System.Text.Encoding encoding = System.Text.Encoding.UTF8;
return encoding.GetString(ms.ToArray());
}
catch (Exception ex)
{
return ex.Message;
}
}

Naik M

Questiongetting list of users Pin
ptvce18-Nov-07 17:44
ptvce18-Nov-07 17:44 
Answergetting list of users Pin
Sarani Ravindran18-Nov-07 19:02
Sarani Ravindran18-Nov-07 19:02 
GeneralRe: getting list of users Pin
ptvce18-Nov-07 21:04
ptvce18-Nov-07 21:04 
Generalgetting list of users Pin
Sarani Ravindran19-Nov-07 17:22
Sarani Ravindran19-Nov-07 17:22 
GeneralRe: getting list of users Pin
ptvce19-Nov-07 18:50
ptvce19-Nov-07 18:50 
Questionaccess the FoxPro .VUE (view file) using ASP.NET Pin
kisna_madhusudan18-Nov-07 17:42
kisna_madhusudan18-Nov-07 17:42 
GeneralRe: access the FoxPro .VUE (view file) using ASP.NET Pin
John-ph18-Nov-07 17:46
John-ph18-Nov-07 17:46 
Questionaccess the FoxPro .VUE (view file) using ASP.NET Pin
june2318-Nov-07 17:38
june2318-Nov-07 17:38 
QuestionHow to expire page when moved to next page.... Pin
KBM7318-Nov-07 10:43
KBM7318-Nov-07 10:43 
AnswerRe: How to expire page when moved to next page.... Pin
SABhatti18-Nov-07 13:20
SABhatti18-Nov-07 13:20 
QuestionAdd keyword and description info to database Pin
Matthew Hansel18-Nov-07 10:22
Matthew Hansel18-Nov-07 10:22 
AnswerRe: Add keyword and description info to database Pin
Not Active18-Nov-07 10:27
mentorNot Active18-Nov-07 10:27 
GeneralRe: Add keyword and description info to database Pin
Matthew Hansel18-Nov-07 11:01
Matthew Hansel18-Nov-07 11:01 
GeneralRe: Add keyword and description info to database Pin
Not Active18-Nov-07 13:27
mentorNot Active18-Nov-07 13:27 
QuestionSending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 5:18
nickabradley18-Nov-07 5:18 
AnswerRe: Sending email in ASP.NET 2.0 Pin
Christian Graus18-Nov-07 10:40
protectorChristian Graus18-Nov-07 10:40 
GeneralRe: Sending email in ASP.NET 2.0 Pin
nickabradley18-Nov-07 10:43
nickabradley18-Nov-07 10:43 

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.