5 changed files with 120 additions and 1 deletions
@ -0,0 +1,63 @@ |
|||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PaintS_JCJL.aspx.cs" Inherits="MESWebSite.Manage.PaintS_JCJL" %> |
|||
|
|||
<!DOCTYPE html> |
|||
|
|||
<html xmlns="http://www.w3.org/1999/xhtml"> |
|||
<head runat="server"> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<link href="/CSS/Basics.css" rel="stylesheet" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" /> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script> |
|||
<script src="/Scripts/MyJs.js" type="text/javascript"></script> |
|||
<style> |
|||
#w td { |
|||
padding: 5px 5px; |
|||
text-align: left; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
#w .title { |
|||
vertical-align: middle; |
|||
text-align: right; |
|||
height: 40px; |
|||
} |
|||
|
|||
p { |
|||
padding: 5px; |
|||
font-size: small; |
|||
font-family: 微软雅黑; |
|||
} |
|||
|
|||
.datagrid { |
|||
text-align: center; |
|||
} |
|||
|
|||
.search_first{ |
|||
margin-left: 33% |
|||
} |
|||
|
|||
/* 中等屏幕 桌面显示器 992至1400 */ |
|||
@media screen and (min-width:992px) and (max-width:1400px){ |
|||
.search_first{ |
|||
margin-left: 1% |
|||
} |
|||
} |
|||
</style> |
|||
<title>生产线信息</title> |
|||
</head> |
|||
<body> |
|||
<form id="form1" runat="server"> |
|||
|
|||
<%--<script type="text/javascript"> |
|||
var url = "http://10.60.101.97:8888/bi/Viewer?proc=1&action=viewer&hback=true&db=WMS!5e93!!5b58!!6c47!!603b!!62a5!!8868!-!4e00!!5382!!2f!!55b7!!6d82!MES!8ffd!!6eaf!!62a5!!8868!!2f!!55b7!!6d82!MES!62a5!!5e9f!!4ea7!!54c1!!660e!!7ec6!.db&platform=PC&au_act=login&adminv=lz&passv=123"; |
|||
let targetWindow = window.open(url, "_blank"); |
|||
</script>--%> |
|||
|
|||
|
|||
</form> |
|||
</body> |
|||
</html> |
@ -0,0 +1,20 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
public partial class PaintS_JCJL : System.Web.UI.Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
if (Request.Cookies["LoginUserInfo"] == null) |
|||
{ |
|||
Response.Write("<script language=javascript>alert('您的登录信息已过期,请重新登录!');top.location.href='../Login.aspx';</script>"); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,26 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <自动生成>
|
|||
// 此代码由工具生成。
|
|||
//
|
|||
// 对此文件的更改可能导致不正确的行为,如果
|
|||
// 重新生成代码,则所做更改将丢失。
|
|||
// </自动生成>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
|
|||
|
|||
public partial class PaintS_JCJL |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// form1 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlForm form1; |
|||
} |
|||
} |
Loading…
Reference in new issue