Friday, September 14, 2012

Cross Chek - Do or Die in BizTalk

1. Before changing Single Sign On Service Password  or Administrator Password:don't forget to take SSO Master Server key Back up.
2. Before Building solution Always clean the Solution or Project : save lots of hassles of  environment issues.

Friday, September 7, 2012

String are immutable: controls special characters are not getting replaced

string mar = "00600cam  006400276260005300340300002500393BK0000954071"
mar.Replace("", "@@@@@@");

Output: mar would be same as that of original value:
00600cam  006400276260005300340300002500393BK0000954071

string mar = "00600cam  006400276260005300340300002500393BK0000954071"
mar = mar.Replace("", "@@@@@@");

Output:
00600cam  006400276260005300340300002500393@@@@@@BK0000954071@@@@@@