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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Space in the name of the start/end tag

Status
Not open for further replies.

atracy

Programmer
Sep 30, 2003
10
0
0
US
I'm trying to locate the correct escape code to create a start/end tag so it contains a space in the name:

Here's an example

<Def Type="ParentObject">
<Description>"AnyBrowser"</Description>
<File Name>"c:\yourfile.txt"</File Name>
</Def>

I know that <File Name> is invalid, but there is an escape code for the space I can use to make work, I just can't find it anywhere. Anyone got an idea?

Thanks!

 
I figured it out...

<Def Type="ParentObject">
<Description>"AnyBrowser"</Description>
<File_XORSPACE_Name>"c:\yourfile.txt"</File_XORSPACE_Name>
</Def>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top