Click here to Skip to main content
15,891,828 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: multiline text box width Pin
samerh27-Apr-09 22:09
samerh27-Apr-09 22:09 
AnswerRe: multiline text box width Pin
Perry Holman27-Apr-09 22:06
Perry Holman27-Apr-09 22:06 
GeneralRe: multiline text box width Pin
samerh27-Apr-09 22:21
samerh27-Apr-09 22:21 
AnswerRe: multiline text box width Pin
Spunky Coder27-Apr-09 22:52
Spunky Coder27-Apr-09 22:52 
AnswerRe: multiline text box width Pin
Herman<T>.Instance28-Apr-09 3:33
Herman<T>.Instance28-Apr-09 3:33 
AnswerRe: multiline text box width Pin
saanj28-Apr-09 21:13
saanj28-Apr-09 21:13 
QuestionEncode or Encrypt the whole url in address bar Pin
sekannak27-Apr-09 21:29
sekannak27-Apr-09 21:29 
AnswerRe: Encode or Encrypt the whole url in address bar Pin
SayreCC27-Apr-09 21:51
SayreCC27-Apr-09 21:51 
Hi, you can use my function

Private _bitEncrypt As Byte()

Public Function EncryptQueryString(ByVal queryString As String) As String
_bitEncrypt = ASCIIEncoding.ASCII.GetBytes(queryString)
Dim encryptedQueryString As String = Convert.ToBase64String(_bitEncrypt)
Return encryptedQueryString
End Function

Public Function DecryptQueryString(ByVal queryString As String) As String
_bitEncrypt = Convert.FromBase64String(queryString)
Dim decryptedQueryString = ASCIIEncoding.ASCII.GetString(_bitEncrypt)
Return decryptedQueryString
End Function

ex:

encryptquerystring(your path or web address)

Hope this one can help.
Thanks

Hi, Please select Good Question if my answer are fit to your Question.

GeneralRe: Encode or Encrypt the whole url in address bar Pin
sekannak27-Apr-09 23:53
sekannak27-Apr-09 23:53 
Answer[Message Deleted] Pin
SayreCC27-Apr-09 21:51
SayreCC27-Apr-09 21:51 
GeneralRe: Encode or Encrypt the whole url in address bar Pin
Abhishek Sur27-Apr-09 21:55
professionalAbhishek Sur27-Apr-09 21:55 
AnswerRe: Encode or Encrypt the whole url in address bar Pin
Abhishek Sur27-Apr-09 21:54
professionalAbhishek Sur27-Apr-09 21:54 
AnswerRe: Encode or Encrypt the whole url in address bar Pin
Christian Graus27-Apr-09 22:05
protectorChristian Graus27-Apr-09 22:05 
QuestionCrystal Reports Charting Pin
Nada Adel27-Apr-09 20:46
Nada Adel27-Apr-09 20:46 
Questionhow can i Rollback PLSQL Command? Pin
sulimanpasha27-Apr-09 20:33
sulimanpasha27-Apr-09 20:33 
AnswerRe: how can i Rollback PLSQL Command? Pin
N a v a n e e t h27-Apr-09 22:44
N a v a n e e t h27-Apr-09 22:44 
Questionweb user control(dropdownlist) Pin
billcodes27-Apr-09 20:30
billcodes27-Apr-09 20:30 
AnswerRe: web user control(dropdownlist) Pin
SayreCC27-Apr-09 20:50
SayreCC27-Apr-09 20:50 
GeneralRe: web user control(dropdownlist) Pin
saanj28-Apr-09 21:15
saanj28-Apr-09 21:15 
AnswerRe: web user control(dropdownlist) Pin
CrazyCoder2627-Apr-09 21:13
CrazyCoder2627-Apr-09 21:13 
QuestionProblem in Date Format Pin
CrazyCoder2627-Apr-09 19:47
CrazyCoder2627-Apr-09 19:47 
AnswerRe: Problem in Date Format Pin
Abhijit Jana27-Apr-09 19:49
professionalAbhijit Jana27-Apr-09 19:49 
GeneralRe: Problem in Date Format Pin
CrazyCoder2627-Apr-09 19:52
CrazyCoder2627-Apr-09 19:52 
GeneralRe: Problem in Date Format Pin
Abhijit Jana27-Apr-09 20:27
professionalAbhijit Jana27-Apr-09 20:27 
AnswerRe: Problem in Date Format Pin
nithydurai27-Apr-09 20:34
nithydurai27-Apr-09 20:34 

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.