Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello please tell me how to create dnn module use C# from vs 2008.
Posted

Hi Take look at this article.
 
Share this answer
 
 
Share this answer
 
To create a DNN module , you first need to create a .dnn file which has information about the .ascx controls that your module will contain, for eg :-


<controls>
 <control>DesktopModule\webControl1.ascx
 </control>
</controls>
<files>
  <file>DesktopModule\webControl1.ascx
  </file>
 <file>DesktopModule\webControl1.ascx.cs
  </file>
<files></files></files>

this is how u can define ut web control in the .dnn file

u need to create a zip file of your module containing your .dnn file and the controls mentioned in your .ddn file

HTH
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900