473,398 Members | 2,120 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Problem showing apostrophe and double quotes, on web page

114 100+
I have an ASP news page to which you can add comments. The comments open up in a new window, and users can click reply to reply to them after which they are taken to the parent page which has a comment form to fill in. The comments show fine, except when you click reply, and they contain either the " or the ' ie, apostrophe or double quotes, . what happens with the apostrophe is that instead of an

'

it shows


ampersand, hash, 39 and semicolon. (I tried adding them here, but they turned into an apostrophe. so i had to edit this post and type in this sentence)

One of the include files that is the "inc.api.asp" has the code for all this i think, and i think it needs altering somewhere. I'm not sure if it's the parent page inc_api code that needs altering or the pop page which shows the comment.

Here is part of the inc_api.com page with the relevant code which may need fixing. Any suggestions welcome. Thanks in advance

Expand|Select|Wrap|Line Numbers
  1. <p>
  2.   <% 
  3. '// REPLACES INVALID CHARS FROM STRING TO BE PASSED INTO JavaScript
  4. '// REPLACES THE FOLLOWING CHARS: "-'-(-) with `-`-[-`]
  5. FUNCTION FIX_JS_STR(val)
  6. Dim TMP_VAL
  7.     TMP_VAL = val
  8.     If Len(TMP_VAL) > 0 Then
  9.         TMP_VAL = Replace(TMP_VAL,chr(34),"&quot;")
  10.         TMP_VAL = Replace(TMP_VAL,"'","`")
  11.         TMP_VAL = Replace(TMP_VAL,"(","[")
  12.         TMP_VAL = Replace(TMP_VAL,")","]")        
  13.     End IF
  14.     FIX_JS_STR = TMP_VAL
  15. END FUNCTION
  16.  
  17.  
  18.  
  19. '// ENCRYPTS STRING SUCH AS PASSWORD
  20. '// Returns encrypted string such as: BTEGE^J] to password
  21. FUNCTION EnCrypt(strCryptThis)
  22.   Dim strChar, iKeyChar, iStringChar, i
  23.   for i = 1 to Len(strCryptThis)
  24.      iKeyChar = Asc(mid("2564218975223456482120840",i,1))
  25.      iStringChar = Asc(mid(strCryptThis,i,1))
  26.      iCryptChar = iKeyChar Xor iStringChar
  27.      strEncrypted =  strEncrypted & Chr(iCryptChar)
  28.   next
  29.   EnCrypt = strEncrypted
  30. END FUNCTION
  31.  
  32. '// DECRYPT STRING SUCH AS PASSWORD
  33. '// Returns decrypted string such as: password to BTEGE^J]
  34. FUNCTION DeCrypt(strEncrypted)
  35. Dim strChar, iKeyChar, iStringChar, i
  36.   for i = 1 to Len(strEncrypted)
  37.      iKeyChar = (Asc(mid("2564218975223456482120840",i,1)))
  38.      iStringChar = Asc(mid(strEncrypted,i,1))
  39.       iDeCryptChar = iKeyChar Xor iStringChar
  40.      strDecrypted =  strDecrypted & Chr(iDeCryptChar)
  41.   next
  42.   DeCrypt = strDecrypted
  43. END FUNCTION
  44.  
  45. PRIVATE FUNCTION APO(val)
  46.     Dim tmpSTR
  47.     tmpSTR = val
  48.     IF NOT tmpSTR = "" THEN
  49.         tmpSTR = Replace(Trim(tmpSTR),chr(34),"&quot;")
  50.         tmpSTR = Replace(Trim(tmpSTR),"'","''")
  51.         tmpSTR = Replace(Trim(tmpSTR),"<","&lt;")
  52.         tmpSTR = Replace(Trim(tmpSTR),">","&gt;")
  53.         IF DB_TO_USE = 3 THEN tmpSTR = Replace(Trim(tmpSTR),"\","\\")
  54.     END IF
  55.     'APO = tmpSTR
  56.     APO = replace(val, "'", "'")    
  57. END FUNCTION
  58.  
  59. PRIVATE FUNCTION APO_LAX(val)
  60.     Dim strRES
  61.     strRES = Replace(Trim(val),"'","''")
  62.     IF DB_TO_USE = 3 THEN strRES = Replace(Trim(strRES),"\","\\")
  63.     'APO_LAX = strRES
  64.     APO_LAX = replace(val, "'", "'")
  65. END FUNCTION
  66.  
  67. PRIVATE FUNCTION APO_INJ(val)
  68.     Dim tmpSTR
  69.     tmpSTR = val
  70.     IF NOT tmpSTR = "" THEN
  71.         tmpSTR = Replace(Trim(tmpSTR),chr(34),"&quot;")
  72.         tmpSTR = Replace(Trim(tmpSTR),"<","&lt;")
  73.         tmpSTR = Replace(Trim(tmpSTR),">","&gt;")
  74.         IF DB_TO_USE = 3 THEN tmpSTR = Replace(Trim(tmpSTR),"\","\\")
  75.     END IF
  76.     'APO_INJ = tmpSTR
  77.     APO_INJ = replace(val, "'", "'")
  78. END FUNCTION
May 11 '07 #1
1 3409
karen987
114 100+
I just want to add something,

in the 3 APO statements above there is a line in each which reads
APO_INJ = replace(val, "'", "'")

I just want to say that it doesn't show on this page, but the second apostrophe in the double quotes actually reads, "ampersand, hash, 39, semicolon"

I had to add this here because if you look at the code, it shows an apostrophe instead of the 4 characters . In the acctual inc_api.asp page, the first set shows an actual apostrope between the double quotes, and the second set shows "apersand, hash, 39 and semicolon"

I think this is a glitch in this forum,

Thanks.
May 11 '07 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

13
by: Richard Hollenbeck | last post by:
To prevent future apostrophe bugs and errors, isn't it just simpler to forbid an apostrophe from being entered into a text field? For example, couldn't "Alice's Restaurant" be changed to "Alices...
12
by: Jeff S | last post by:
In a VB.NET code behind module, I build a string for a link that points to a JavaScript function. The two lines of code below show what is relevant. PopupLink = "javascript:PopUpWindow(" &...
4
by: AZNewsh | last post by:
I am storing HTML in an oracle database, this is loaded from a textbox in a webpage, I convert ' to ' ' using the code below: foo.Replace("'", "''").Replace("&", "'||'&'||'") this works just...
3
by: Alan Mailer | last post by:
Ok, I've looked for an answer for this, because I'm sure it's been asked a thousand times... but no luck... so here goes. Imagine I want to create a NodeList based on an XPath statement. The...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.