formtemplates.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 45 行

ASPX
45
字号
<%@ Page Inherits="System.Web.UI.MobileControls.MobilePage" %>

<Mobile:Form runat="Server">
<DeviceSpecific>
<Choice Filter="IsWML">
  <HeaderTemplate>
    <b>Welcome to this Web site!</b>
    <br/>
  </HeaderTemplate>
  <FooterTemplate>
    <small>All Content Copyrighted 2001</small>
  </FooterTemplate>
</Choice>
<Choice Filter="IsHTML32">
  <HeaderTemplate>
    <table width="100%" bgcolor="yellow">
    <tr>
      <td>
      Welcome to this Web site!
      </td>
    </tr>
    </table>
  </HeaderTemplate>
  <FooterTemplate>
    <hr>
    <small>All Content Copyrighted &copy; 2001</small>
  </FooterTemplate>
</Choice>
<Choice>
  <HeaderTemplate>
    <b>Welcome to this Web site!</b>
    <br/>
  </HeaderTemplate>
</Choice>
</DeviceSpecific>

<Mobile:Label
  Runat="Server">
  Here is the main body of the page.
</Mobile:Label>

</Mobile:Form>


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?