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.
DS7/DSWeb/CW/CwVouchersChFeeSettlementLi...

63 lines
1.9 KiB
C#

using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
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 System.Xml.Linq;
using DSWeb.EntityDA;
using DSWeb.Models;
using JsonHelper;
using System.Xml;
namespace DSWeb.CW
{
public partial class CwVouchersChFeeSettlementList : System.Web.UI.Page
{
public string strUserID = "";
protected void Page_Load(object sender, EventArgs e)
{
if (Session["USERID"] != null)
{
strUserID = Session["USERID"].ToString().Trim();
}
else
{
//Session["USERID"] = "1BEC90E1-9780-472F-90C2-0C6390C044A4";
//strUserID = Session["USERID"].ToString().Trim();
Server.Transfer("~/Error/FriendError.aspx");
return;
}
string strUrl = Request.Url.ToString();
//
//权限可视范围
//this.hdRangeV.Value = RangeDA.GetVISIBLERANGE(strUserID.Trim(), "modCwVouchersChFeeSettlementListlist");
//this.hdRangeO.Value = RangeDA.GetOPERATERANGE(strUserID.Trim(), "modCwVouchersChFeeSettlementListlist");
//this.hdRange.Value = "";
////if (this.hdRangeV.Value.Trim() != this.hdRangeO.Value.Trim())
////{
//this.hdRange.Value = "";
//if (this.hdRangeO.Value.Trim().Equals("4"))//无
//{
// this.imgAdd.Disabled = true;
// this.imgSave.Disabled = true;
// this.imgDel.Disabled = true;
// this.imgPrint.Disabled = true;
//}
//}
//grid
if (!IsPostBack)
{
}
//
}
}
}