当前位置: 首页 > 网络学院 > 客户端脚本教程 > APPML > title
The <title> element defines a title for the application.
<title>元素为应用程序定义了一个标题。
If the <title> element is defined as a child of the <appml> element, it will be the DEFAULT title for the application.
如果<title>元素是作为<appml>元素的子元素被定义的,那么,它将作为应用程序的默认标题。
To define a particular title for the HTML report, HTML list, or HTML form, add a <title> element as a child of <htmlreport>, <htmllist>, or <htmlform>.
可以通过添加<htmlreport>、<htmllist>或<htmlform>的子元素来为HTML报告、HTML列表、HTML表单定义一个特殊的标题。
If the <title> element is omitted in either <htmlreport>, <htmllist>, or <htmlform>, the application will use the default title under the <appml> element.
如果在<htmlreport>、<htmllist>或<htmlform>中忽略了<title>元素,那么应用程序将会在<appml>元素下使用默认的标题。
<?xml version="1.0" ?> <appml> <title>Northwind Categories</title> <database> <htmlreport /> </appml> |
View the output produced by the AppML HTML Report Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件
<?xml version="1.0" ?> <appml> <title>Northwind Categories</title> <database> <htmlreport> </appml> |
View the output produced by the AppML HTML Report Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件
<?xml version="1.0" ?> <appml> <title>Northwind Categories</title> <database> <htmllist> </appml> |
View the output produced by the AppML HTML List Service
查看由AppML HTML 报告服务输出的结果
View the XML source file
查看XML 源文件