For the following code, I can\'t get the string.Replace to work:
string.Replace
someTestString.Replace(someID.ToString(), sessionID);
when I
strings are immutable, the replace will return a new string so you need something like
string newstring = someTestString.Replace(someID.ToString(), sessionID);