Hi all,,,,,
it's more dufficult to start learning Dotnetnuke alone,,but this website it help you..
and more more difficult how to Development Module:
Steps how to Development Module:
1- Open DotNetNuke Application
2-Add New Items
3- Select DotNetNuke Dynamic Module
4-Type ModuleName.
5- Select language
6- click Add
7- It created two folder(one folder in App_Code and another in DesktopModules folder)
8- Rename the two folder it created
9- Add ModuleName to Webconfig file
<codeSubDirectories>
<add directoryName="ModuleName" />
</codeSubDirectories>
10-Copy all contents of (01.00.00.SqlDataProvider) it find in DesktopModules folder
11-Build
12-Login By Host
13-Open SQL from Host Menu
14-Paste (01.00.00.SqlDataProvider)
15-check Run as Script
16-Click Execute
==now it create Tables===
17-Go to Module Defintion from Host Menu
18- Select Import Module Definition
19- select ModuleName.dnn from Manifest from DropDownlist and click Import Manifest
==Now it add Module to DNN==
==all this is Dfault Module==Sure not need for this Module==now Custom your module
20-Create Tables
21-Create Stored Procedure(Inser,Update,Delete,Get)
22-Open Microsoft SQL SERVER and Delete table and stored procedure it crated before
22-open DotNetNuke and Login By Host
23-Open SQL from Host Menu
24-Paste Create table (twice first for Create Table and another for add Stored Procedure)
25-check Run as Script
26-Click Execute
27-Ckeck this file it compitable with (Stored Procedure).
28- I think it Finish Now.