Guides/Webform-Integration-Sub-Folder.md
... ...
@@ -474,3 +474,44 @@ As we did in the previous step, use 'Find and Replace' tool again as below
474 474
![1](http://wiki.izenda.us/Guides/Webform-Integration-Sub-Folder/5.png)
475 475
476 476
###Step 10. Copy rs.aspx and rs.aspx.cs from webform kit to website root folder
477
+
478
+###Step 11. Comment out form tag from ReportDesginer.aspx in Izenda to avoid a form tag conflict
479
+
480
+
481
+```html
482
+<!-- comment out form tag from ReportDesginer.aspx as below -->
483
+
484
+<%--<form id="form1" runat="server">--%>
485
+
486
+ <div id="repHeader"></div>
487
+ <cc1:adhocreportdesigner id="Adhocreportdesigner1" runat="server">
488
+ </cc1:adhocreportdesigner>
489
+
490
+ <%--</form> --%>
491
+
492
+
493
+```
494
+
495
+###Step 12. Change the LicenseKey and ConnnectionString in Global.asax of project
496
+
497
+ To get a new trial key, you may contact [sales@izenda.com](mailto:sales@izenda.com).
498
+
499
+```csharp
500
+
501
+AdHocSettings.LicenseKey = "INSERT_LICENSE_KEY_HERE";
502
+AdHocSettings.SqlServerConnectionString = @"INSERT_CONNECTION_STRING_HERE";
503
+
504
+```
505
+
506
+
507
+###Step 13. Launch the website
508
+
509
+Launch the website and check if Izenda works fine. At this stage the website should look like as below.
510
+
511
+
512
+![1](http://wiki.izenda.us/Guides/Webform-Integration-Sub-Folder/7.png)
513
+
514
+
515
+
516
+
517
+
... ...
\ No newline at end of file