<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication3.Default" %> <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" Namespace="CrystalDecisions.Web" TagPrefix="CR" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <h1>555</h1> <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true" HasRefreshButton="True" /> </div> </form> </body> </html>
protected void Page_Load(object sender, EventArgs e) { CrystalReportViewer1.Visible = true; ReportDocument rDoc = new ReportDocument(); rDoc.Load(@"C:\WebApplication3\bin\Report\A.rpt"); CrystalReportViewer1.ReportSource = rDoc; }
ReportDocument rpt = new ReportDocument(); rpt.Load(Server.MapPath("CrystalReport1.rpt")); rpt.SetParameterValue("CustomerID", this.txtCustomerID.Text); this.CrystalReportViewer1.ReportSource = rpt;
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง