我将图像上传到服务器并将它们的路径存储在表中(varchar(MAX))。
我设法创建了一个报告并显示了该表中的记录,但我无法将图像绑定到它的数据源(存储路径)。
我的路径如下所示:
~/ARTSQLDATA/PTDIR/15090248/IDFTO/15090248PPID.jpg
我正在使用以下代码填充我的数据集
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
RepVuerCtl.ProcessingMode = ProcessingMode.Local
RepVuerCtl.LocalReport.ReportPath = Server.MapPath("~/Account/RepPtProf.rdlc")
RepVuerCtl.LocalReport.EnableExternalImages = True
Dim DsPtProf As DSPtProf = GetData()
Dim datasource As New ReportDataSource("PatientProfile", DsPtProf.Tables(0))
RepVuerCtl.LocalReport.DataSources.Clear()
RepVuerCtl.LocalReport.DataSources.Add(datasource)
End If
End Sub
Private Function GetData() As DSPtProf
Dim ARTSQLCON As SqlConnection = New SqlConnection(-------())
Dim SQLCmd As New SqlCommand()
SQLCmd.Connection = ARTSQLCON
Using DtaRdr As New SqlDataAdapter(SQLCmd)
SQLCmd.CommandType = CommandType.StoredProcedure
SQLCmd.CommandText = "RepTblRegPtProf"
SQLCmd.Parameters.Add("@FileNum", SqlDbType.Int).Value = 15090248
Using DsPtProf As New DSPtProf()
DtaRdr.Fill(DsPtProf, "RepTblRegPtProf")
Return DsPtProf
End Using
End Using
End Function
请帮忙谢谢!