Guides/MVC-Integration.md
... ...
@@ -414,3 +414,22 @@ AdHocSettings.LicenseKey = "INSERT_LICENSE_KEY_HERE";
414 414
AdHocSettings.SqlServerConnectionString = @"INSERT_CONNECTION_STRING_HERE";
415 415
416 416
```
417
+###Step 12. Run it!
418
+
419
+After Step 11, the Sample_MVCApp should build and work without a problem. To see Izenda is integrated with this web application,
420
+
421
+**a.** Click _Layout.cshtml in Views\Shared\ in Solution Explorer
422
+
423
+**b.** Add an actionlink to Izenda as below
424
+
425
+```html
426
+<li>@Html.ActionLink("Home", "Index", "Home")</li>
427
+<li>@Html.ActionLink("About", "About", "Home")</li>
428
+<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
429
+<li>@Html.ActionLink("Izenda", "ReportList", "Reporting")</li>
430
+
431
+```
432
+
433
+
434
+
435
+