I have some datarows and I want to display them in a textbox;
This is some part of my code:
strDetails += "Challenge ID" + "\t" + "Challenge Name" + "\t\t" + "Start Time" + "\r\n\r\n";
strDetails += drChallenge["ChallengeID"] + "\t\t" + drChallenge["ChallengeName"] + "\t\t" +
startTime.ToString("h:mm tt") + "\r\n";
However, the output has some issues with the time string. I dont know how to align them.

