You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.4 KiB
Plaintext
55 lines
1.4 KiB
Plaintext
10 months ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Areas/MvcShipping/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
|
||
|
|
||
|
|
||
|
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
||
|
<script type="text/javascript" src="../../../../Areas/Account/Viewsjs/jquery-3.1.1.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
var USERID;
|
||
|
function getSessgion1() {
|
||
|
USERID = '<%= Session["USERID"] %>';
|
||
|
}
|
||
|
getSessgion1();
|
||
|
|
||
|
var usercode;
|
||
|
function getSessgion2() {
|
||
|
usercode = '<%= Session["CODENAME"] %>';
|
||
|
}
|
||
|
getSessgion2();
|
||
|
|
||
|
var SHOWNAME;
|
||
|
function getSessgion3() {
|
||
|
SHOWNAME = '<%= Session["SHOWNAME"] %>';
|
||
|
}
|
||
|
getSessgion3();
|
||
|
|
||
|
var COMPANYID;
|
||
|
function getSessgion4() {
|
||
|
COMPANYID = '<%=Session["COMPANYID"] %>';
|
||
|
}
|
||
|
getSessgion4();
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
var path = getQueryString('path');
|
||
|
$("#imgView").attr('src', path);
|
||
|
|
||
|
///获取QuertString
|
||
|
function getQueryString(name) {
|
||
|
var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i');
|
||
|
var r = window.location.search.substr(1).match(reg);
|
||
|
if (r != null) {
|
||
|
return unescape(r[2]);
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
</script>
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content2" ContentPlaceHolderID="head" runat="server">
|
||
|
<img id="imgView"/>
|
||
|
|
||
|
</asp:Content>
|