zoukankan
html css js c++ java
.dnn文件 xml 配置
DNN文件结构分析:
<
dotnetnuke version
=
"
3.0
"
type
=
"
Module
"
>
<
folders
>
<
folder
>
<!--
模块名称
-->
<
name
>
CLinks
</
name
>
<!--
模块名称(模块的友好名称)
-->
<
friendlyname
>
CLinks
</
friendlyname
>
<!--
模块功能描述
-->
<
description
>
分类链接模块
</
description
>
<!--
模块版本
-->
<
version
>
01.00
.
00
</
version
>
<!--
业务逻辑类
-->
<
businesscontrollerclass
>
DNNChina.Modules.CLinks.CLinksController, DNNChina.Modules.CLinks
</
businesscontrollerclass
>
<
modules
>
<
module
>
<
friendlyname
>
CLinks
</
friendlyname
>
<!--
模块所包含的控件
-->
<
controls
>
<!--
显示控件
-->
<
control
>
<title>控件标题</title>
<
src
>
DesktopModules
/
CLinks
/
CLinks.ascx
</
src
>
<
type
>
View
</
type
>
<supportspartialrendering>true</supportspartialrendering> <!--支持AJAX局部呈现-->
</
control
>
<!--
编辑控件
-->
<
control
>
<
key
>
Edit
</
key
>
<
title
>
Edit CLinks
</
title
>
<
src
>
DesktopModules
/
CLinks
/
EditCLinks.ascx
</
src
>
<
type
>
Edit
</
type
>
</
control
>
<!--
设置控件
-->
<
control
>
<
key
>
Settings
</
key
>
<
title
>
Settings CLinks
</
title
>
<
src
>
DesktopModules
/
CLinks
/
Settings.ascx
</
src
>
<
type
>
Edit
</
type
>
</
control
>
</
controls
>
</
module
>
</
modules
>
<!--
需要安装的文件清单
-->
<
files
>
<!--
程序集文件
-->
<
file
>
<
name
>
DNNChina.Modules.CLinks.dll
</
name
>
</
file
>
<
file
>
<
name
>
DNNChina.Modules.CLinks.SqlDataProvider.dll
</
name
>
</
file
>
<!--
用户控件文件
-->
<
file
>
<
name
>
CLinks.ascx
</
name
>
</
file
>
<
file
>
<
name
>
EditCLinks.ascx
</
name
>
</
file
>
<
file
>
<
name
>
Settings.ascx
</
name
>
</
file
>
<!--
语言包文件
-->
<
file
>
<
path
>
App_LocalResources
</
path
>
<!--
目录名
-->
<
name
>
CLinks.ascx.resx
</
name
>
</
file
>
<
file
>
<
path
>
App_LocalResources
</
path
>
<
name
>
CLinks.ascx.zh
-
CN.resx
</
name
>
</
file
>
<
file
>
<
path
>
App_LocalResources
</
path
>
<
name
>
EditCLinks.ascx.resx
</
name
>
</
file
>
<
file
>
<
path
>
App_LocalResources
</
path
>
<
name
>
EditCLinks.ascx.zh
-
CN.resx
</
name
>
</
file
>
<
file
>
<
path
>
App_LocalResources
</
path
>
<
name
>
Settings.ascx.resx
</
name
>
</
file
>
<
file
>
<
path
>
App_LocalResources
</
path
>
<
name
>
Settings.ascx.zh
-
CN.resx
</
name
>
</
file
>
<!--
数据库安装脚本
-->
<
file
>
<
name
>
01.00
.
00
.SqlDataProvider
</
name
>
</
file
>
<!--
数据库卸载脚本
-->
<
file
>
<
name
>
Uninstall.SqlDataProvider
</
name
>
</
file
>
</
files
>
</
folder
>
</
folders
>
</
dotnetnuke
>
查看全文
相关阅读:
python基础——返回函数
python基础——sorted()函数
python基础——filter函数
python基础——map/reduce
python基础——高阶函数
python基础——迭代器
python——生成器
轻量级文本编辑器,Notepad最佳替代品:Notepad++
python网络编程
如何检测远程主机上的某个端口是否开启?
原文地址:https://www.cnblogs.com/ajaxleoxu/p/1213067.html
最新文章
hadoop MapReduce
(5.10)mysql高可用系列——percona-toolkit工具下的pt-table-checksum 在线验证主从一致性【续写中】
(5.9)mysql高可用系列——正常主从切换测试
windows10专业版激活
(5.8)mysql高可用系列——MySQL中的GTID复制(实践篇)
【3.2】【mysql基本实验】mysql GTID复制(基于空数据的配置)
mysql一个SQL案例
(5.7)mysql高可用系列——MySQL中的GTID复制(理论篇)【转】
(5.6)mysql高可用系列——MySQL Utilities 管理工具
sql server如何精准匹配字符中的字符,绝对匹配
热门文章
InterlliJ IDEA 2017.3.x / 2017.3.4 License Server激活
十大Intellij IDEA快捷键
IntelliJ Idea 集成svn 和使用
不错位的java .class 反编译工具推荐
SpringBoot拦截器的使用
SpringBoot整合定时任务task
SpringBoot整合redis
IntelliJ IDEA神器使用技巧笔记
python基础——偏函数
python基础——匿名函数
Copyright © 2011-2022 走看看