|
|
|
Click here to copy the following block | ' Convert a string to its ASCII representation ' Example: Response.Write(AsciiEncode("hello")) ' ==> hello ' ' Note: this may be useful when you're producing the code for HTML forms with ' hidden/visible field, and you want to make a little more difficult for the ' user to understand the name (you can also "encrypt" the name, ' not just the value) and value of those fields, if they look at the page's ' source code. The browser will correctly interpret the values anyway.
Function AsciiEncode(ByVal value As String) As String Dim encValue As New System.Text.StringBuilder(value.Length * 6) Dim c As Char ' encode each char to its ASCII representation For Each c In value encValue.Append("&#") encValue.Append(Convert.ToInt32(c)) encValue.Append(";") Next Return encValue.ToString() End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|