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.
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using System;
|
|
using System.Collections;
|
|
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;
|
|
|
|
namespace DSWeb.Settlements
|
|
{
|
|
public partial class CommonRecvSettleApplication : System.Web.UI.Page
|
|
{
|
|
private string strModuleName;
|
|
public string strUserID;//登录用户GID
|
|
public string strCompanyID;//公司GID
|
|
public string strShowName;//用户显示名
|
|
public string strDeptName;//部门名称
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (Session["USERID"] != null)
|
|
{
|
|
strUserID = Session["USERID"].ToString();
|
|
this.hdUserID.Value = strUserID;
|
|
}
|
|
else
|
|
{
|
|
Server.Transfer("~/Error/FriendError.aspx");
|
|
return;
|
|
//strUserID = "";
|
|
//hdUserID.Value = "";
|
|
}
|
|
if (Session["SHOWNAME"] != null)
|
|
{
|
|
strShowName = Session["SHOWNAME"].ToString();
|
|
}
|
|
if (Session["COMPANYID"] != null)
|
|
{
|
|
strCompanyID = Session["COMPANYID"].ToString();
|
|
}
|
|
if (Session["DEPTNAME"] != null)
|
|
{
|
|
strDeptName = Session["DEPTNAME"].ToString();
|
|
}
|
|
//
|
|
if (Request.QueryString["mod"] != null)
|
|
{
|
|
strModuleName = Request.QueryString["mod"].ToString();
|
|
this.h_mod.Value = strModuleName;
|
|
}
|
|
this.h_refreshstate.Value = "";
|
|
if (Request.QueryString["refresh"] != null)
|
|
{
|
|
if (Request.QueryString["refresh"].ToString().Trim().Equals("1"))
|
|
{
|
|
this.h_refreshstate.Value = "1";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|