2156ae7e9ad0a2988ac1f61498d312037df4b788
Guides/Webform-Integration-Sub-Folder.md
| ... | ... | @@ -18,10 +18,6 @@ You can also create a new web site in Visual Studio in ASP.NET web forms |
| 18 | 18 | |
| 19 | 19 |  |
| 20 | 20 | |
| 21 | -The below is how the basic website should look like. |
|
| 22 | - |
|
| 23 | - |
|
| 24 | - |
|
| 25 | 21 | |
| 26 | 22 | ###Step 2. Copy contents of /Bin folder in webform kit to the Bin folder of host website |
| 27 | 23 | |
| ... | ... | @@ -427,7 +423,17 @@ Place the copied code between < hr / > and < footer > |
| 427 | 423 | |
| 428 | 424 | ``` |
| 429 | 425 | |
| 430 | -**c.** (To be added) |
|
| 426 | +**c.** In order to launch Izenda, add a link to Izenda report list page in the < body > of Site.master as below |
|
| 427 | + |
|
| 428 | +```html |
|
| 429 | +<ul class="nav navbar-nav"> |
|
| 430 | + <li><a runat="server" href="~/">Home</a></li> |
|
| 431 | + <li><a runat="server" href="~/About">About</a></li> |
|
| 432 | + <li><a runat="server" href="~/Contact">Contact</a></li> |
|
| 433 | + <li><a runat="server" href="~/Izenda/ReportList.aspx">Izenda</a></li> <!-- link to Izenda --> |
|
| 434 | + |
|
| 435 | + |
|
| 436 | +``` |
|
| 431 | 437 | |
| 432 | 438 | |
| 433 | 439 | ###Step 8. Change MasterPageFile="~/Default.master" to MasterPageFile="~/Site.master" |