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.
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
using DSWeb.Models;
|
|
using DSWeb.EntityDA;
|
|
using JsonHelper;
|
|
using System.Xml;
|
|
|
|
namespace DSWeb.WMS
|
|
{
|
|
public partial class VwWmsDetailList2 : System.Web.UI.Page
|
|
{
|
|
public string strUserID;//用户GID
|
|
private string strSearchCacheName;//综合查询缓存名称
|
|
private string stroplb = "";//业务类别
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (Session["USERID"] != null)
|
|
{
|
|
strUserID = Session["USERID"].ToString().Trim();
|
|
this.h_uid.Value = strUserID;
|
|
}
|
|
if (Request.QueryString["oplb"] != null)
|
|
{
|
|
stroplb = Request.QueryString["oplb"].ToString();
|
|
this.h_oplb.Value = stroplb;
|
|
}
|
|
|
|
if (Request.QueryString["searchcachename"] != null)
|
|
{
|
|
strSearchCacheName = Request.QueryString["searchcachename"].ToString();
|
|
h_searchcache.Value = strSearchCacheName;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|