麻书城的专栏

Appeon for PowerBuilder技术——Rich Client Web应用的快速开发平台

用户操作
[即时聊天] [发私信] [加为好友]
麻书城ID:shuchengma
31264次访问,排名3780(-1)好友0人,关注者0
shuchengma的文章
原创 18 篇
翻译 0 篇
转载 3 篇
评论 13 篇
最近评论
shijie1983:希望网络营销使特价机票通过管理培训送到婚纱摄影……
shijie1983:希望网络营销使特价机票通过管理培训送到婚纱摄影……
shijie1983:摄影杭州特价机票代理杭州打折机票优惠杭州机票大家杭州化妆培训到最满意的服务.
16
shijie1983:网络温度记录仪营销隔断销售氧化铁代理沙发床保证时尚和实惠.
11专业测厚仪运输温湿度记录仪工具氧化铁原料测厚仪的……
文章分类
收藏
    相册
    工作
    网址
    sybase.public.appeon
    正阳软件中文网址
    存档
    软件项目交易
    订阅我的博客
    XML聚合  FeedSky
    订阅到鲜果
    订阅到Google
    订阅到抓虾
    订阅到BlogLines
    订阅到Yahoo
    订阅到GouGou
    订阅到飞鸽
    订阅到Rojo
    订阅到newsgator
    订阅到netvibes

    原创 Appeon Web应用嵌入在HTML页面的例子收藏

    新一篇: Appeon for PowerBuilder 5.0 的新特性 | 旧一篇: Appeon Web应用隐藏IE菜单和地址栏的方法

     
    Appeon Web应用嵌入在HTML页面的例子
    假设你的HTML主页面布局
     
    Top区域
     
     
    Left区域
     
     
     
     
    Main区域
     
    1、主页面HTML文件内容。注意使用了Frameset和frame将页面划分为三个区域
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>Appeon web应用嵌入在HTML页面的例子</title>
    </head>
    <frameset rows="80,*" cols="*" framespacing="0" frameborder="no" border="0" bordercolor="#000000">
     <frame src="top.html" name="topFrame" frameborder="no" scrolling="auto" noresize="noresize" id="topFrame" title="topFrame" />
     <frameset rows="*" cols="190,*" framespacing="1" frameborder="yes" border="1" bordercolor="#000000">
        <frame src="left.html" name="leftFrame" frameborder="no" scrolling="auto" id="leftFrame" title="leftFrame" />
        <frame src="main.html" name="mainFrame" frameborder="no" scrolling="auto" id="mainFrame" title="mainFrame" />
     </frameset>
    </frameset>
    <noframes><body>
    </body>
    </noframes></html>
     
    2、Top区域HTML文件内容
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>Top区域</title>
    </head>
    <body>
    <img src="apache_pb.gif" width="259" height="32" /> //例子中放置了一个图片
    </body>
    </html>
     
    3、Left区域HTML文件内容
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>Left区域功能列表</title>
    </head>
    <body>
    <table width="100%" border="0">
     <tr>
        <td><a href="bulletin/public.htm" target="mainFrame">最新公告</a></td//指向其它HTML页面
     </tr>
     <tr>
        <td><a href="upload/application.htm" target="mainFrame">上传公告</a></td> //指向一个Appeon Web应用入口
     </tr>
     <tr>
        <td><a href="webdemo/application.htm?user;123456;w_sheet1" target="mainFrame"> 合同输入</a></td>
     </tr>    //指向一个Appeon Web应用入口,并传递参数,依次是用户名、口令和要打开的窗口
     <tr>
        <td><a href="webdemo/application.htm?user;123456;w_sheet2" target="mainFrame"> 帐户列表</a></td>
     </tr>
    </table>
    </body>
    </html>
     
    4、Main区域HTML文件内容
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>Main区域HTML文档</title>
    </head>
    <body>
    </body>
    </html>
     
     

    发表于 @ 2006年11月17日 15:31:00|评论(loading...)|编辑

    新一篇: Appeon for PowerBuilder 5.0 的新特性 | 旧一篇: Appeon Web应用隐藏IE菜单和地址栏的方法

    评论:没有评论。

    发表评论  


    当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
    Csdn Blog version 3.1a
    Copyright © 麻书城