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

link|improve this question

50% accept rate
Its an aside... but Can I ask why you are storing an entire datatable in the session, and what kind of session state are you using? – JonAlb Nov 9 '11 at 14:43
feedback

3 Answers

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|improve this answer
Sorry tried that didn't work. – xtrabits Oct 4 '09 at 9:45
What error did you get - the same one? Are you sure that that session variable actually contains a DataTable object? – Mark Bell Oct 4 '09 at 9:50
@xtrabits, which line throws the exception? This one?: Dim dt As DataTable = Session("Brief") – o.k.w Oct 4 '09 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 '09 at 9:52
feedback

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

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

see example here

link|improve this answer
feedback

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|improve this answer
Another option to determine if Session("Brief") is a DataTable (instead of using TryCast) would be to use VB's TypeOf operator: If TypeOf Session("Brief") Is DataTable Then ... – Scott Mitchell Aug 31 '10 at 21:51
feedback

Your Answer

 
or
required, but never shown

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