⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 browsermasteropera.master

📁 用vs2005编网页的入门实例
💻 MASTER
字号:
<%@ Master Language="C#" CodeFile="BrowserMasterOpera.master.cs" Inherits="BrowserMasterOpera_master" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
    <LINK rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
    <form id="form1" runat="server">
    <table border="1" cellpadding="0" cellspacing="0" width="100%" height="100%">
        <!-- site header -->
        <tr>
            <td colspan="2" align="center" class="wrapper">Site Header</td>
        </tr>
        
        <tr>          
            <td valign="top" align="left" class="body">
                <h2>This is the Opera browser master page</h2>
                
                <!-- this is the placeholder for the page content -->
                <asp:contentplaceholder id="PageContent" runat="server" />
            </td>

            <!-- site navigation -->
            <td valign="top" width="150" class="nav">
                <table border="0" width="100%" cellpadding="4" cellspacing="0">
                    <tr>
                        <td align="center">Site Navigation</td>
                    </tr>
                    <tr>
                        <td><a href="#">Section Link 1</a></td>
                    </tr>
                    <tr>
                        <td><a href="#">Section Link 2</a></td>
                    </tr>
                    <tr>
                        <td><a href="#">Section Link 3</a></td>
                    </tr>
                    <tr>
                        <td><a href="#">Section Link 4</a></td>
                    </tr>
                    <tr>
                        <td><a href="#">Section Link 5</a></td>
                    </tr>
                    <tr>
                        <td><a href="#">Section Link 6</a></td>
                    </tr>
                </table>
            </td>
        </tr>
        
        <!-- site footer -->
        <tr>
            <td colspan="2" align="center" class="wrapper">Site Footer</td>
        </tr>
    </table>
    </form>
</body>
</html>

⌨️ 快捷键说明

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