Question : Replace apostrophes in all Session Variables in C#?

Having a bit of trouble here...

Can someone provide some code to loop through all active Session variables and replace any single apostrophes with double apostrophes so that I can insert cleanly into SQL database?

Thanks!

Answer : Replace apostrophes in all Session Variables in C#?

try

foreach (string key in Session.Keys) {
  Session[key].ToString()  = Session[key].ToString().Replace("'","''");
}

Random Solutions  
 
programming4us programming4us