Basf_TCC7/HJGL/FineUIPro.Web/common/ReportPrint/ExReportPrint.aspx.cs

32 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.Common.ReportPrint
{
public partial class ExReportPrint : System.Web.UI.Page
{
protected string replaceParameter;
protected string reportId;
protected string varValue;
protected string projectId;
//protected string hideValue;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
replaceParameter = Request.QueryString["replaceParameter"];
reportId = Request.QueryString["reportId"];
projectId = Request.QueryString["projectId"];
varValue = HttpUtility.UrlDecode(Request.QueryString["varValue"]).Replace(",","/");
//hideValue = Server.UrlDecode(Request.QueryString["rd"]);
//varValue=new string[2]{"您好!","中国"};
//varValue = "您好!" + "|" + "中国";
}
}
}
}