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

📄 notepad.aspx

📁 开源OA办公自动化系统源码20080613
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Notepad.aspx.cs" Inherits="Manage_Notepad" EnableViewState="true" %>

<!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=utf-8" />
    <meta name="author" content="TakWai" />
    <title>Notepad</title>
    <link rel="stylesheet" type="text/css" href="../Style/Manage/Style.css" />
    <link rel="stylesheet" type="text/css" href="../Style/Manage/Layout.css" />
    <style type="text/css">
        body
        {
            width: 670px;
            padding: 10px;
            text-align: left;
        }
    </style>
</head>
<body>
<form id="notepadForm" runat="server">
<div id="notepad-frame">
    <div class="box">
        <div id="notepad-title">
            文件路径: <asp:TextBox ID="txtFilePath" runat="server" ReadOnly="true" onfocus="this.className='colorfocus'" onblur="this.className='txt';" CssClass="txt" style="width: 300px;"></asp:TextBox>
            &nbsp;文件编码: <asp:DropDownList ID="ddlEncode" runat="server"><asp:ListItem Value="ANSI">ANSI</asp:ListItem>
                <asp:ListItem Value="UTF-8">UTF-8</asp:ListItem>
                <asp:ListItem Value="Unicode">Unicode</asp:ListItem>
                <asp:ListItem Value="Unicode big endian">Unicode-be</asp:ListItem>
            </asp:DropDownList>
            &nbsp;<asp:Button ID="btnSave" runat="server" Text="保存" CssClass="btn" />&nbsp;&nbsp;<input type="button" name="close" value="关闭" class="btn" onclick="window.top.hidePopWin();" />
        </div>
        
        <div id="notepad-content">
            <asp:TextBox ID="txtFileContent" TextMode="MultiLine" runat="server" onfocus="this.className='colorfocus'" onblur="this.className='txt';" class="txt" style="width: 600px; height: 260px; overflow-y: auto; overflow-x: hidden;" ></asp:TextBox>
        </div>
        
        <asp:Label ID="lblMsg" runat="Server"></asp:Label>
        <asp:Label ID="lblNew" runat="server" style="display: none;"></asp:Label>
    </div>    
</div>
</form>
</body>
</html>

⌨️ 快捷键说明

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