1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| Partial Class Default3
Inherits System.Web.UI.Page
Protected Sub btnOK_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnOK.Click
Try
CrystalReportViewer1.Visible = True
Dim x As CrystalDecisions.Web.CrystalReportSource
x = New CrystalDecisions.Web.CrystalReportSource()
x.Report.FileName = SelectionLien.SelectedValue
CrystalReportViewer1.ReportSource = x
CrystalReportViewer1.BorderStyle = BorderStyle.Solid
Catch ex As Exception
msgbox(ex.Message)
End Try
End Sub
End Class |
Partager