1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="LancerCheckList.aspx.vb" Inherits="CEC.LancerCheckList" Trace="true" %>
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
<script type="text/javascript">
function imprimer() {
document.getElementById('ReportViewer1').ClientController.LoadPrintControl();
//setTimeout('fermer()', 10000);
setTimeout('Transfer()', 20000);
//location.href = 'LancerImpression.aspx';
}
function fermer() {
window.open('', '_parent', '');
window.close();
}
function Transfer() {
location.href = "Conformite.aspx";
}
</script>
</head>
<body onload="imprimer()">
<form id="form1" runat="server">
<div>
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana"
Font-Size="8pt" Height="760px" ProcessingMode="Remote" Width="100%">
<ServerReport ReportPath="/MesRapports/MonRapport"
ReportServerUrl="<%$ appSettings:UrlReportServer %>" />
</rsweb:ReportViewer>
</div>
</form>
</body>
</html> |
Partager