vote up 0 vote down star

I get the below error

Unable to cast object of type 'System.String' to type 'System.Data.DataTable'.

This is the code I'm using

Dim str As String = String.Empty

    If (Session("Brief") IsNot Nothing) Then

        Dim dt As DataTable = Session("Brief")
        If (dt.Rows.Count > 0) Then
            For Each dr As DataRow In dt.Rows
                If (str.Length > 0) Then str += ","
                str += dr("talentID").ToString()
            Next
        End If

    End If

    Return str

Thanks

flag

50% accept rate

3 Answers

vote up 0 vote down

I'm not a VB guy, but I would have thought you would need to cast the session variable to the correct type (DataTable):

Dim dt As DataTable = CType(Session("Brief"), DataTable);
link|flag
Sorry tried that didn't work. – xtrabits Oct 4 at 9:45
What error did you get - the same one? Are you sure that that session variable actually contains a DataTable object? – Mark B Oct 4 at 9:50
@xtrabits, which line throws the exception? This one?: Dim dt As DataTable = Session("Brief") – o.k.w Oct 4 at 9:51
1  
Get the type of the object by writing this Session("Brief").GetType().ToString(), make sure it is a DataTable. – o.k.w Oct 4 at 9:52
vote up 0 vote down

I think you need to "cast" Session("Brief") :

Dim dt As DataTable = CType(Session("Brief"), Datatable)

see example here

link|flag
vote up 0 vote down

How about this one:

Dim str As String = ""

If Not Session("Brief") Is Nothing Then
  Dim dt As DataTable = TryCast(Session("Brief"), DataTable)

  If Not dt Is Nothing AndAlso dt.Rows.Count > 0 Then
    For Each dr As DataRow In dt.Rows
      If (str.Length > 0) Then
        str += ","
      End If

      str += dr("talentID").ToString()
    Next
  End If
End If

Return str

Use TryCast and the check of the cast was succesful or not...

And here's version with a bit of LINQ thrown in for good measure:

Dim str As String = ""

If Not Session("Brief") Is Nothing Then
  Dim dt As DataTable = TryCast(Session("Brief"), DataTable)

  If Not dt Is Nothing AndAlso dt.Rows.Count > 0 Then
    str = Join((From r In dt Select CStr(r("talentID"))).ToArray, ",")
  End If
End If

Return str
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.