0
You'd need to replace "\\" with @"\" :
ConfigurationSettings.AppSettings["Location"] + @"\" + Format_Date + @"\" + custName + "(" + pId + ")" + @"\";
Not really worth doing.
Accepted 1
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
How would a verbatim work for the following: ConfigurationSettings.AppSettings["Location"] + "\\" + Format_Date + "\\" + custName + "(" + pId + ")" + "\\";
0
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
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