How to debug a Private Module Assembly in DotNetNuke?

How to debug a Private Module Assembly in DotNetNuke.

 

1. 以browser开启DotNetNuke首页

2. 将所写的模块,手动新增到 Module Definitions 

3. 开启模块vs.net 项目 ,以Debug模式 建置项目
How to debug a Private Module Assembly in DotNetNuke?

4. 将产生的dll档案与pdb档案拷贝到 DotNetNuke 的 bin下(记得要做,我第一次就是忘了,所以不成功)

5. 设定除错

(1) 选择选单的 工具à侦错处理序

How to debug a Private Module Assembly in DotNetNuke?
(2) 选择aspnet_wp.exe 后按下 “附加”How to debug a Private Module Assembly in DotNetNuke?

(3) 勾选 Common Language Runtime 后按下 “确定”

How to debug a Private Module Assembly in DotNetNuke?

(4) 关闭

How to debug a Private Module Assembly in DotNetNuke?

 

6. 要除错的模块加到网页中:

How to debug a Private Module Assembly in DotNetNuke?
7. 设定断点

How to debug a Private Module Assembly in DotNetNuke?
8. 浏览网页

How to debug a Private Module Assembly in DotNetNuke?
9. 除错

How to debug a Private Module Assembly in DotNetNuke? 

这种方式的除错应该是通用的,只要是程序架构事由多个个别开发DLL所组成,刻意将程序拆成多个DLL时,的除错应该都可以使用此方式除错。

我第一次开发模块的时候,因为不知道用此方式除错,就直接把开发的模块程序加到DotNetNuke的项目中,可是这样项目太大,速度很慢,用此方法比较好

 

此文章是参考:How to build a Private Module Assembly in Rainbow.doc


 

你可能感兴趣的:(dotnetnuke)