<%= Model.STPData.InitialRateSetting.HasValue ? Model.STPData.InitialRateSetting.Value.ToString() : "" %>
The Model.STPData.InitialRateSetting
is a decimal. I want to format that as a percentage, and then round it to 5 decimal places. How would I do that?