Click here to Skip to main content
15,908,013 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: account validation in asp.net Pin
Guy Harwood5-Jan-07 3:33
Guy Harwood5-Jan-07 3:33 
QuestionDatabinding a ListBox to List Pin
JambeDuSinge5-Jan-07 2:22
JambeDuSinge5-Jan-07 2:22 
AnswerRe: Databinding a ListBox to List Pin
minhpc_bk5-Jan-07 16:26
minhpc_bk5-Jan-07 16:26 
GeneralRe: Databinding a ListBox to List Pin
JambeDuSinge5-Jan-07 20:36
JambeDuSinge5-Jan-07 20:36 
GeneralRe: Databinding a ListBox to List Pin
minhpc_bk5-Jan-07 21:14
minhpc_bk5-Jan-07 21:14 
GeneralRe: Databinding a ListBox to List Pin
JambeDuSinge5-Jan-07 22:56
JambeDuSinge5-Jan-07 22:56 
QuestionPassword Encryption function Pin
Arindam Tewary5-Jan-07 1:13
professionalArindam Tewary5-Jan-07 1:13 
AnswerRe: Password Encryption function Pin
Imran Khan Pathan5-Jan-07 1:57
Imran Khan Pathan5-Jan-07 1:57 
Imports System.Security.Cryptography<br />
Imports System.IO<br />
Imports System.Text <br />
<br />
Private Shared KEY_64() As Byte = {42, 16, 93, 156, 78, 4, 218, 32}<br />
        Private Shared VAL_64() As Byte = {55, 103, 246, 79, 36, 99, 167, 3}<br />
<br />
        Public Shared Function Encrypt(ByVal value As String) As String<br />
            Dim CryptoProvider As DESCryptoServiceProvider = New DESCryptoServiceProvider<br />
            Dim ms As MemoryStream = New MemoryStream<br />
            Dim cs As CryptoStream = New CryptoStream(ms, CryptoProvider.CreateEncryptor(KEY_64, VAL_64), CryptoStreamMode.Write)<br />
            Dim sw As StreamWriter = New StreamWriter(cs)<br />
            sw.Write(value)<br />
            sw.Flush()<br />
            cs.FlushFinalBlock()<br />
            ms.Flush()<br />
            Return Convert.ToBase64String(ms.GetBuffer, 0, ms.Length)<br />
        End Function


Pathan
AnswerRe: Password Encryption function Pin
enjoycrack5-Jan-07 15:51
enjoycrack5-Jan-07 15:51 
AnswerRe: Password Encryption function Pin
Vasudevan Deepak Kumar5-Jan-07 22:07
Vasudevan Deepak Kumar5-Jan-07 22:07 
QuestionSubmit the form when Hits ENTER key Pin
Jay_se5-Jan-07 0:08
Jay_se5-Jan-07 0:08 
AnswerRe: Submit the form when Hits ENTER key Pin
enjoycrack5-Jan-07 0:11
enjoycrack5-Jan-07 0:11 
GeneralRe: Submit the form when Hits ENTER key Pin
Jay_se5-Jan-07 0:45
Jay_se5-Jan-07 0:45 
GeneralRe: Submit the form when Hits ENTER key Pin
Marcus J. Smith5-Jan-07 2:28
professionalMarcus J. Smith5-Jan-07 2:28 
GeneralRe: Submit the form when Hits ENTER key Pin
Jay_se5-Jan-07 2:54
Jay_se5-Jan-07 2:54 
GeneralRe: Submit the form when Hits ENTER key Pin
Marcus J. Smith5-Jan-07 4:04
professionalMarcus J. Smith5-Jan-07 4:04 
GeneralRe: Submit the form when Hits ENTER key Pin
Jay_se5-Jan-07 19:34
Jay_se5-Jan-07 19:34 
Questionexecute an .exe file Pin
suveenmohan4-Jan-07 23:47
suveenmohan4-Jan-07 23:47 
AnswerRe: execute an .exe file Pin
enjoycrack4-Jan-07 23:52
enjoycrack4-Jan-07 23:52 
GeneralRe: execute an .exe file Pin
suveenmohan4-Jan-07 23:56
suveenmohan4-Jan-07 23:56 
GeneralRe: execute an .exe file Pin
enjoycrack5-Jan-07 0:09
enjoycrack5-Jan-07 0:09 
AnswerRe: execute an .exe file Pin
Colin Angus Mackay4-Jan-07 23:52
Colin Angus Mackay4-Jan-07 23:52 
Questionhow to add the css class to asp.net web server control Pin
Rmesh4-Jan-07 23:39
Rmesh4-Jan-07 23:39 
AnswerRe: how to add the css class to asp.net web server control Pin
enjoycrack4-Jan-07 23:53
enjoycrack4-Jan-07 23:53 
AnswerRe: how to add the css class to asp.net web server control Pin
Sebastian T Xavier5-Jan-07 0:26
Sebastian T Xavier5-Jan-07 0:26 

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.