1075f91e1d893fb86873bd10c1f77433cd89632b
Guides/Webform-Integration-Sub-Folder.md
| ... | ... | @@ -4,7 +4,7 @@ |
| 4 | 4 | |
| 5 | 5 | ##About |
| 6 | 6 | |
| 7 | -This guide is designed to instruct first-time users how to integrate Izenda webform kit into a basic ASP.NET website using Visual Studio Express 2013 for Web. In this integration guide, all Izenda files will be placed in a sub-directory within the hosting website. This guide will use an Izenda webform kit and a basic ASP.NET website, which can be created using Visual Studio Express 2013 for Web. |
|
| 7 | +This guide is designed to instruct first-time users how to integrate Izenda webform kit into a basic ASP.NET website using Visual Studio Express 2013 for Web. In this integration guide, all Izenda files will be placed in a sub-directory called 'Izenda' within the hosting website. This guide will use an Izenda webform kit and a basic ASP.NET website, which can be created using Visual Studio Express 2013 for Web. |
|
| 8 | 8 | |
| 9 | 9 | [Izenda webform kit download link](http://archives.izenda.us/ri/webforms/webforms-cs.zip) |
| 10 | 10 | |
| ... | ... | @@ -143,9 +143,13 @@ And add Izenda.Adhoc namespace. now global.asax of website should look like as b |
| 143 | 143 | </script> |
| 144 | 144 | |
| 145 | 145 | ``` |
| 146 | - |
|
| 146 | +###Step 4. Copy everything except Global.asax, web.config, and Bin folder from webform kit into the sub folder 'Izenda' of website |
|
| 147 | + |
|
| 148 | +Copy everything from webform kit except global.asax, web.config and bin folder to sub folder. In this integration guide, the sub folder is named as 'Izenda' |
|
| 149 | + |
|
| 150 | + |
|
| 147 | 151 | |
| 148 | -###Step 4. Copy OnInit method from Default.master.cs from webform kit to corresponding file/method of website master page |
|
| 152 | +###Step 5. Copy OnInit method from Default.master.cs from webform kit to corresponding file/method of website master page |
|
| 149 | 153 | |
| 150 | 154 | Copy the below method from Default.master.cs of webform kit to Site.master.cs of the website. And add Izenda.AdHoc namespace to Site.master.cs |
| 151 | 155 | |
| ... | ... | @@ -170,7 +174,9 @@ protected override void OnInit(EventArgs e) { |
| 170 | 174 | |
| 171 | 175 | |
| 172 | 176 | |
| 173 | -###Step 5. Copy the below code from <Head> section from Default.master from webform kit to the <Head> section of website master page |
|
| 177 | +###Step 5. Copy the below code from <Head> section from Default.master from webform kit to the <Head> section of website masterpage |
|
| 178 | + |
|
| 179 | +**a.** Copy the below code from <Head> section from Default.master of webform kit to the <Head> section of Site.master |
|
| 174 | 180 | |
| 175 | 181 | ```html |
| 176 | 182 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
| ... | ... | @@ -208,6 +214,8 @@ protected override void OnInit(EventArgs e) { |
| 208 | 214 | |
| 209 | 215 | ``` |
| 210 | 216 | |
| 217 | +**b.** Copy the below code from <Head> section from Default.master of webform kit to the <Head> section of Site.master |
|
| 218 | + |
|
| 211 | 219 | |
| 212 | 220 | **a.** Add 'Reporting'and 'Resources'from \mvc5r3 to project by dragging and dropping them in Solution Explorer as below |
| 213 | 221 |