28 lines
944 B
Plaintext
28 lines
944 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/PopupForm3.Master" AutoEventWireup="true" CodeBehind="FileTooLarge.aspx.cs" Inherits="Education.Forms.Common.FileTooLarge" %>
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
|
|
<style type="text/css">
|
|
li {
|
|
font-size: 12pt;
|
|
}
|
|
|
|
li span {
|
|
color: red;
|
|
font-weight:bold;
|
|
}
|
|
</style>
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
|
|
<div style="margin-top: 30px; margin-left: 30px">
|
|
<div style="float: left; height: 128px;">
|
|
<img src="../../picture/bomb.png" />
|
|
</div>
|
|
<div style="float: left; height: auto; margin-left: 10px">
|
|
<h2>上傳的檔案太大了</h2>
|
|
<ul>
|
|
<li>上傳的檔案大小請勿超過 <asp:Label ID="lbFileLimit" runat="server" Text=""></asp:Label> kB
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</asp:Content>
|