xinjiang/SGGL/FineUIPro.Web/Controls/ProgressBarIn.aspx

42 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2024-11-19 09:45:27 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProgressBarIn.aspx.cs" Inherits="FineUIPro.Web.Controls.ProgressBarIn" %>
<!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>
<style>
/*定义父容器*/
.content{
width: 550px;
height: 30px;
background: #E4F1FB;
margin:0 auto;
}
/*定义进度条*/
.box{
width: 0px;
height: 30px;
line-height: 30px;
text-align: center;
background: #3BAAE3;
color: #fff;
}
</style>
</head>
<body style="width:550px">
<form id="form1" runat="server">
<div class="content" id="content"> <div class="box" id = "box" ></div > </div >
</form>
</body>
<asp:ScriptManager ID="ScriptManager2" runat="server" EnablePageMethods="true">
<Scripts>
<asp:ScriptReference Path="~/res/ProgressBarIn.js"/>
</Scripts>
</asp:ScriptManager>
</html>