faa49e1e249394999d1cc7ac8046ebc4339af496
Guides/MVC-Integration.md
| ... | ... | @@ -410,23 +410,22 @@ public class MvcApplication : System.Web.HttpApplication |
| 410 | 410 | **b.** Find the below two lines in the body of html |
| 411 | 411 | ```html |
| 412 | 412 | <div class="left-logo"> |
| 413 | - <img src="~/Resources/FromDLL/Resources/ModernImages/bi-logo.png" alt="Business intelligence" /> //top-left logo |
|
| 414 | - </div> |
|
| 415 | - <div class="right-logo"> |
|
| 416 | - @if (!String.IsNullOrEmpty(Izenda.AdHoc.AdHocSettings.ApplicationHeaderImageUrl)) { |
|
| 417 | - <text> |
|
| 418 | - <a href="http://izenda.com" style="position: relative; top: 4px;"><img class="right-logo" src="@Html.Raw(Izenda.AdHoc.AdHocSettings.ApplicationHeaderImageUrl)" alt="Izenda Reports" /></a> |
|
| 419 | - ></text> |
|
| 420 | - } |
|
| 421 | - else { |
|
| 422 | - <text> |
|
| 423 | - <a href="http://izenda.com" style="position: relative; top: 4px;"><img class="right-logo" src="~/Resources/FromDLL/Resources/ModernImages/IzendaNewLogoBlue.png" alt="Izenda Reports" /></a> |
|
| 424 | - </text> |
|
| 425 | - } |
|
| 426 | - |
|
| 427 | - |
|
| 428 | - |
|
| 429 | - |
|
| 413 | +<img src="~/Resources/FromDLL/Resources/ModernImages/bi-logo.png" alt="Business intelligence" /> //top-left logo |
|
| 414 | +</div> |
|
| 415 | +<div class="right-logo"> |
|
| 416 | +@if (!String.IsNullOrEmpty(Izenda.AdHoc.AdHocSettings.ApplicationHeaderImageUrl)) { |
|
| 417 | +<text> |
|
| 418 | + |
|
| 419 | +<a href="http://izenda.com" style="position: relative; top: 4px;"><img class="right-logo" src="@Html.Raw(Izenda.AdHoc.AdHocSettings.ApplicationHeaderImageUrl)" alt="Izenda Reports" /></a>> |
|
| 420 | +</text> |
|
| 421 | + }else { |
|
| 422 | + |
|
| 423 | +<text> |
|
| 424 | + |
|
| 425 | +<a href="http://izenda.com" style="position: relative; top: 4px;"><img class="right-logo" src="~/Resources/FromDLL/Resources/ModernImages/IzendaNewLogoBlue.png" alt="Izenda Reports" /></a> |
|
| 426 | + |
|
| 427 | +</text> |
|
| 428 | + } |
|
| 430 | 429 | |
| 431 | 430 | ``` |
| 432 | 431 |