Ich erhalte einen Kompilierfehler Typ "ctltype" ist nicht mit diesem Code definiert.
Dies ist .NET 1.1 Legacy-Code so nicht gut ich weiß.
Weiß jemand, warum?
Public Function GetControlText(ByVal ctls As Control, ByVal ctlname As String, ByVal ctltype As Type) As String
Dim ctl As Control
Dim res As String
ctl = ctls.FindControl(ctlname)
If ctl Is Nothing Then
Return ""
End If
res = CType(ctl, ctltype).Text
If res Is Nothing Then
Return ""
Else
Return res
End If
End Function