", "description": "alert(1)", "image": "https://test.c-sharpcorner.com/UploadFile/MinorCatImages/062632AM.png", "author": { "@type": "Person", "name": "Divyansh Gupta" }, "publisher": { "@type": "Organization", "name": "CSharp.com", "logo": { "@type": "ImageObject", "url": "https://test.c-sharpcorner.com/App_Themes/CSharp/Images/SiteLogoNew.png" } }, "datePublished": "2023-10-06", "dateModified": "2023-10-31"} ", "item": "https://test.c-sharpcorner.com/forums/ltscriptgtalert1ltscriptgt" } ] } ", "text": " alert(1) ", "answerCount": 1, "datePublished": "2023-10-06T06:18+00:00", "author": { "@type": "Person", "name": "Divyansh Gupta", "url": "https://test.c-sharpcorner.com/members/divyansh-gupta4" } , "suggestedAnswer": [ { "@type": "Answer", "text": " alert is the function in a javascript that provides to show an alert msg to the user. ", "upvoteCount": 1, "url": "https://test.c-sharpcorner.com/forums/ltscriptgtalert1ltscriptgt", "datePublished": "2023-10-31T12:15+00:00", "author": { "@type": "Person", "name": "Pushpendra Kumar Shukla", "url": "https://test.c-sharpcorner.com/members/pushpendra-kumar-shukla3" } } ] } }
1
Answer

<script>alert(1)</script>

<script>alert(1)</script>

Answers (1)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
You'd need to replace "\\" with @"\" :

ConfigurationSettings.AppSettings["Location"] + @"\" + Format_Date + @"\" + custName + "(" + pId + ")" + @"\";

Not really worth doing.

Accepted
1
dc

dc

NA 629 0 12y
You are saying to have the value as: C:\ntemp\ntestt1\ncustomer? This will cause my value to

be C:\temp\testt1\customer in the database?
0
dc

dc

NA 629 0 12y
How would a verbatim work for the following: ConfigurationSettings.AppSettings["Location"] + "\\" + Format_Date + "\\" + custName + "(" + pId + ")" + "\\";
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
No. I'm saying to pass this C# string:

    "C:\\temp\\testt1\\customer"

to the database i.e. with doubled backslashes.

You could also use a 'verbatim' string (preceded by @) with single backslashes:

    @"C:\temp\testt1\customer"

Both of these represent the same string in C#.

 

0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Just save the string inclusive of the doubled backslashes which are needed in C# to distinguish the use of the backslash in escape sequences (such as \n, \t etc).

It should then save in the database as a path with single backslashes
Next Recommended Forum