10 lines
269 B
Plaintext
10 lines
269 B
Plaintext
@using System.Configuration
|
|
|
|
@if (!string.IsNullOrEmpty(ConfigurationManager.AppSettings["AgencyName"]))
|
|
{
|
|
<text>Mileage Traker - @ConfigurationManager.AppSettings["AgencyName"] - @ViewBag.Title</text>
|
|
}
|
|
else
|
|
{
|
|
<text>Mileage Traker - @ViewBag.Title</text>
|
|
} |