KeyserSoze1877
Programmer
I have a javascript function that spawns a new formatted window that plays recorded phone calls.
----------------------------------------------
Heres my script:
<script><!--
function OpenDDpage(page) {
DDflyout=window.open(page, 'LinkedPoint',
config='left=600,top=0,width=400,height=400,scrollbars=yes,
resizable=yes,status=no,toolbar=no');
}
// -->
</script>
Heres my call:
javascript:OpenDDpage('test.cfm?file=\\v01\v01D\!TestDir\Dir\filename.wav')
-----------------------------------------------
Doing this the file variable changes to
\v01v01D!TestDirDirfilename.tmp in the test.cfm page.
Why does it parse out the single '\'?
The directories I need to post come from a table, how do I pass the directory without losing the '\' and without using chr() commands everywhere?
Mr. K
----------------------------------------------
Heres my script:
<script><!--
function OpenDDpage(page) {
DDflyout=window.open(page, 'LinkedPoint',
config='left=600,top=0,width=400,height=400,scrollbars=yes,
resizable=yes,status=no,toolbar=no');
}
// -->
</script>
Heres my call:
javascript:OpenDDpage('test.cfm?file=\\v01\v01D\!TestDir\Dir\filename.wav')
-----------------------------------------------
Doing this the file variable changes to
\v01v01D!TestDirDirfilename.tmp in the test.cfm page.
Why does it parse out the single '\'?
The directories I need to post come from a table, how do I pass the directory without losing the '\' and without using chr() commands everywhere?
Mr. K