|
|
|
|
|
| | |
|
PowerASP active server pages asp.net microsoft .net framework sdk learn asp what is asp tutorial learn asp.net CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: SQL Single Quote problem |
From: |
Paul Simpson |
Date: |
4/7/1999 5:37:26 PM |
IP: |
207.207.47.5 |
I got this from the Asp Developer's Network site: (hope they don't mind the plug)
<SCRIPT>
LANGUAGE="VBSCRIPT" RUNAT="Server">
FUNCTION unQuote (s)
pos = Instr(s, "'")
While pos > 0
s = Mid(s,1,pos) & "'" & Mid(s,pos+1)
pos = InStr(pos+2, s, "'")
Wend
unQuote = Trim(s)
END FUNCTION
</SCRIPT> |
Previous Message
Follow Up - Still dont know how - Lisa 4/7/1999 6:24:09 PM
|
|
|
|
|
|
|
|
|
|
|
|