Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

One more Double quotes

Status
Not open for further replies.

Nanda

Programmer
Nov 14, 2000
104
US
Hi There!

I am creating a component and using submiting its commands using its method. I need to specify commands in double quotes only. sometimes, these commands itself contains double quotes, which is requirement. In such cases, my asp fails. I do not know how to solve this problem. I am doing like...

Set Obj = CreateObject(""SAS.application")
SASObj.Submit ("put "&dataset";")

the &dataset should be in double quotes

Thanks to all
Nanda
 
Hi.

Try to replace the inside quats to \" like this:

SASObj.Submit ("put \"&dataset\";")

regards, Kirilla

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top