string url = @"..\" + row.Field<String>(1).Replace("photo",@"photo\");
url.Replace(@"\\", @"\");
i´m trying to put a single backslash but c# put that as \\
string url = @"..\" + row.Field<String>(1).Replace("photo",@"photo\");
url.Replace(@"\\", @"\");
i´m trying to put a single backslash but c# put that as \\
did you try something like the following?
string url = @"..\" + row.Field(1).Replace("photo",@"photo\"); url = url.Replace(@"\", @"\");
i,e add "url = " assigning.