you can change the border color using following code.
tabShowComments.Style.Add("border-color", "white");
if you want to turn off the border. u can do as following
tabShowComments.Style.Add("border", "none");
If my post solves your problem, please mark it as an answer.