have a data base sql server that i am running the records from , and one of the fields that is returned will hold the data of .... <iabc-type="ppub"> ..... but when its returned it comes back as "<iabc-type=\"ppub\">" with the extra \ in the code which it will not find in the text file that it is looking for, because i am looking for <iabc-type="ppub"> instead of
"<iabc-type=\"ppub\">" any ideas on what i can put into the data base field to stop these \ from being returned every time it hits a " mark
In c# back slash \ is escape sequence speifier. and double qoutation " is special character too.
if you need \ then specify \\ twice or use @ to make string to be used as it is.
thereofr check that your data in sql server has the related data. please also specify sql server verion and also add it in the zone
Thanks