<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="xmlPM_WorkTaskBillMyList.aspx.cs" Inherits="WebTM.views.基础资料.公用基础资料.xmlPM_WorkTaskBillMyList" %>
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
<head runat="server">
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<title></title>
|
<script runat="server">
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
//★特别提示★:
|
//不同的数据库应该选用不同的报表XML数据生成类,SQL Server数据库用SqlXMLReportData,Oracle数据库用OracleXMLReportData
|
//OledbXMLReportData适合于Access等本地数据库,为了演示方便,这里从Grid++Report的Access例子数据库中获取报表数据
|
|
//OledbXMLReportData.GenOneRecordset(this, "select * from Customers order by CustomerID");
|
//SqlXMLReportData.GenOneRecordset(this, "select * from h_v_Kf_POStockInBillList_K3 where hmainid=1781");
|
SqlXMLReportData.GenOneRecordset(this, "select * from h_v_PM_WorkTaskBillMyList where HInterID in("+Request.Params["linterid"]+" ) " );
|
}
|
</script>
|
</head>
|
<body>
|
<form id="form1" runat="server">
|
<div>
|
</div>
|
</form>
|
</body>
|
</html>
|