Я хочу показать текст в формате htm в rpt pdf, но в моем состоянии просмотра не отображается текст в моем rpt. Ниже вы можете увидеть мой текущий подход. Я бы
ViewState("KOMBO") = tipe
Dim filename As String = ""
If tipe = "D" Then
filename = Server.MapPath("text\establisher.htm")
namatipe = "ESTABLISHER"
ElseIf tipe = "DI" Then
If isDIequal Then
filename = Server.MapPath("text\influencer.htm")
namatipe = "INFLUENCER"
Else
filename = Server.MapPath("text\concluder.htm")
namatipe = "CONCLUDER"
End If
Dim crystalReport As New ReportDocument()
Dim guid As Guid = System.Guid.NewGuid
Dim nama As String
crystalReport.Load(Server.MapPath("~/Hasil2.rpt"))
crystalReport.SetParameterValue("nama", lblNama.Text)
crystalReport.SetParameterValue("ttl", lblLahir.Text)
crystalReport.SetParameterValue("tipe", lblTipe.Text)
crystalReport.SetParameterValue("KOMBO", ViewState("KOMBO"))
crystalReport.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Request.PhysicalApplicationPath & "WebForm/temps2/" & "DISC" & guid.ToString & ".pdf")
Response.Write("<script>window.open('temps2/" & "DISC" & guid.ToString & ".pdf')</script>")
crystalReport.Close()
crystalReport.Dispose()