博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dotnetNuke module development steps, dnn 模块开发步骤
阅读量:5975 次
发布时间:2019-06-19

本文共 910 字,大约阅读时间需要 3 分钟。

hot3.png

Architechture(examplex by GuestBook module[VB Version] ):

1、Data Access Layer

    include sqlDataProvider.vb,DataProvider.vb

2、Business logic Layer

    include GuestBookController.vb

    include GuestBookInfo.vb

3、PresentationLayer

    include ViewGuestBook.ascx  others in DesktopModules/GuestBook

一、To Build the Data Access Layer we will:

  1. Create the Table
  2. Create the sotred procedures
  3. Alter the sqlDataProvider.vb, put the code that call the stored procedures in the SqlDataProvider.vb
  4. Alter the DataProvider.vb , put the methods (that are overiden by the SqlDataProvider.vb ) into DataProvider.vb

二、To build the Business logic

  1. Alter "GuestBookInfo.vb"
  2. Alter "GuestBookController.vb"

三、To build the Presentation layer

  1. Alter the localization(.recx)files
  2. Alter "controls and their code behind files
  • EditGuestBook.ascx
  • Settings.ascx
  • ViewGuestBook.ascx         

版权声明:本文为博主原创文章,未经博主允许不得转载。

转载于:https://my.oschina.net/xiaohelong/blog/497835

你可能感兴趣的文章
Web service (一) 原理和项目开发实战
查看>>
跑带宽度多少合适_跑步机选购跑带要多宽,你的身体早就告诉你了
查看>>
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
Centos下基于Hadoop安装Spark(分布式)
查看>>
mysql开启binlog
查看>>
设置Eclipse编码方式
查看>>
分布式系统唯一ID生成方案汇总【转】
查看>>
并查集hdu1232
查看>>
Mysql 监视工具
查看>>
Linux Namespace系列(09):利用Namespace创建一个简单可用的容器
查看>>
博客搬家了
查看>>
Python中使用ElementTree解析xml
查看>>
linux的日志服务器关于屏蔽一些关键字的方法
查看>>