Software Requirement
- Visual Studio 2012 Express
- SQL Server Express
- DotNetNuke Module Template for 2012 ( DNNTemplates )
Setup
- Install Visual Studio Express if you haven't already done it.
- Install SQL Server Express if you haven't already done it.
- Install DNNTemplates.
Steps To Create a Custom Module
- Open Visual Studio 2012.
Go to File, New, then Project,
- Select Appropriate Module Template form installed template. Specify Appropriate Module name and Folder location.
- Click the OK button. It starts creating the project and at the end, it shows the following error message.
- To resolve this error, we need to make changes in the solution file of the created module.
Click TestingModule.csproj file in Visual Studio.
- Make the following changes in TestingModule.csproj file.
- <ProjectExtensions>
- <VisualStudio>
- <FlavorProperties GUID="{31-65df-11da-9384-00065123321}">
- <WebProjectProperties>
- <UseIIS>True</UseIIS>
- <AutoAssignPort>False</AutoAssignPort>
- <DevelopmentServerPort>0</DevelopmentServerPort>
- <DevelopmentServerVPath>
- </DevelopmentServerVPath>
- <IISUrl>http://localhost/DNN/desktopmodules/TestingModule</IISUrl>
- <OverrideIISAppRootUrl>True</OverrideIISAppRootUrl>
- <IISAppRootUrl>http://localhost/DNN/</IISAppRootUrl>
- <NTLMAuthentication>False</NTLMAuthentication>
- <UseCustomServer>False</UseCustomServer>
- <CustomServerUrl>
- </CustomServerUrl>
- <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
- </WebProjectProperties>
- </FlavorProperties>
- </VisualStudio>
- </ProjectExtensions>
- Open a separate instance of a custom module project in a separate visual studio, so that we make coding changes.
- Steps to build complete DotNetNuke project along with custom module.
- Build TestingModule Project.
- Rebuild Main Solution of DotNetNuke Project.
- Run the solution in VS 2012.
- Login into the DotNetNuke application.
- Sign-in into DotNetNuke.
Integration of custom module in DotNetNuke project
- Run SQL Script.
- Go to TestingModule Folder in Main Solution.
- Go to Providers, DataProviders, SqlDataProvider - 00.00.01.SqlDataProvider.
- Click 00.00.01.SqlDataProvider file having SQL queries.
- Go to Host -> SQL.
- Paste SQL query in the following window.
- Add Custom Module.
- Go to Host -> Extension.
- Select Create New Module.
- Select the appropriate option to create a new Custom module. Click the Create Module button.
- After the Custom module created, it shows the newly created module on the extension page.
- Test Page added into the application.
- Add Module on the test page as follow:
- Go to Module -> Add New Module.
- Drag and drop the module on the test page.
- When settings are correct, it will show you the ‘add item’ option on the test page.
- In case some settings are incorrect, it will not show you the add item option on a test page, in that case, we need to change your setting of Custom module.
- Go to Host -> Extension.
- Go to the custom module we added to the list.
- Select the Edit option.
- Please check the Module Control section properly as shown in the figure.
!!! Happy Coding !!!