22,181
社区成员




Public Shared Function GetMemberName(ByVal inMemberID As String) As String
Dim SQL As String = "select name from MT_mytable where id='" & ShareFunction.SafeRequest(inMemberID, 0) & "'"
Try
Return SqlHelper.ExecuteScalar(GetDBConnectionString(), CommandType.Text, SQL)
Catch ex As Exception
Return ""
Finally
End Try
End Function