Advertisement

06.23.2008 at 03:53PM PDT, ID: 23509409
[x]
Attachment Details

javascript, escape the backslash

Asked by itortu in JavaScript

Tags: javascript, escape the backslash

i am using a javascript function found here in ee.

it works nice to retrieve the querystring variables and later write them on the html page

i ran into a problem, and that is, when a passed variables contains a backslash such as:

p_old_path=\\PPT.DFT\Files\Global\My_Directory

the variables is written as

\PPT.DFTFilesGlobalMy_Directory  

how can the function be modified so it escapes the backslashes that are contained on the passed querystring variables?


Thank you. Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
<script language="javascript">
    p_name= "";
    p_id= "";
    p_old_path= "";
    p_new_path= "";
    p_dir_owner= "";
    p_primary_stew= "";
    p_bckup_stew= "";
    p_full_access= "";
    p_read_access= "";
    p_description= "";
    p_other_info= "";
// Get names
var queryString = window.location.href.substring((window.location.href.indexOf('?') + 1));
var array1 = queryString.split('&'); // Each array element is in format "fieldname=value"
for(var i = 0; i < array1.length; i++)
{
   var tempArray = array1[i].split('='); // Separate fieldname and value
   eval(tempArray[0] + " = \"" + tempArray[1] + "\"");
}
</script>
[+][-]06.23.2008 at 04:29PM PDT, ID: 21851271

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.24.2008 at 07:41AM PDT, ID: 21856231

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.24.2008 at 08:00AM PDT, ID: 21856485

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.24.2008 at 09:02AM PDT, ID: 21857231

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Tags: javascript, escape the backslash
Sign Up Now!
Solution Provided By: hielo
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628