The problem is this line of code
dTable= session("myCat")
you are trying to put a session varible datatype to a Datatable datatype (make sense?) but you can't do this implicitly, you must cast it to the datatype you want.
so it should be something like this
dTable = CType(Session("myCat"), DataTable)
Hope this helps
Happy coding