ServerReport.GetServerVersion 方法
返回报表服务器的版本。
命名空间: Microsoft.Reporting.WebForms
程序集: Microsoft.ReportViewer.WebForms(在 Microsoft.ReportViewer.WebForms.dll 中)
语法
声明
Public Function GetServerVersion As String
用法
Dim instance As ServerReport
Dim returnValue As String
returnValue = instance.GetServerVersion()
public string GetServerVersion()
public:
String^ GetServerVersion()
member GetServerVersion : unit -> string
public function GetServerVersion() : String
返回值
类型:System.String
一个包括服务器版本信息的字符串值。
示例
Private Sub Button2_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button2.Click
Debug.WriteLine(ReportViewer1.ServerReport.GetServerVersion)
End Sub