clientbuildmanager.aspx

来自「《圣殿祭司的ASP.NET 2.0开发详解——使用C#》光盘内容.包含了书籍所含」· ASPX 代码 · 共 42 行

ASPX
42
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ClientBuildManager.aspx.cs" Inherits="ClientBuildManager" %>

<!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 runat="server">
    <title>未命名页面</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table>
            <tr>
                <td style="width: 152px; height: 26px">
        <asp:Label ID="capVirtualDir" runat="server" Text="虚拟目录:"></asp:Label></td>
                <td style="width: 145px; height: 26px">
                    <asp:TextBox ID="txtVirtualDir" runat="server" Width="300px"></asp:TextBox></td>
            </tr>
            <tr>
                <td style="width: 152px">
        <asp:Label ID="capSource" runat="server" Text="来源目录位置:"></asp:Label></td>
                <td style="width: 145px">
        <asp:TextBox ID="txtSourceLocation" runat="server" Width="300px"></asp:TextBox></td>
            </tr>
            <tr>
                <td style="width: 152px">
        <asp:Label ID="capTarget" runat="server" Text="目标目录位置:"></asp:Label></td>
                <td style="width: 145px">
        <asp:TextBox ID="txtTargetLocation" runat="server" Width="300px"></asp:TextBox></td>
            </tr>
            <tr>
                <td colspan="2">
        <asp:Button ID="btnCompiler" runat="server" Text="预编译网站" OnClick="btnCompiler_Click" /></td>
            </tr>
        </table>
    </div>
        <br />
        <asp:Label ID="txtMsg" runat="server"></asp:Label>
    </form>
</body>
</html>

⌨️ 快捷键说明

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