Sub Mostrar_TipoCliDes()
Dim MyCommand As SqlCommand
Dim oReader As SQLDataReader
Dim SelectCmd As String = "SELECT descrip FROM tipoclie where ticl= "+Session("ticl")+" order by ticl"
MyCommand = New SqlCommand(SelectCmd, MyConnection)
MyCommand.Connection.Open()
oReader = MyCommand.ExecuteReader()
ticlDes.DataSource = oReader
ticlDes.DataBind()
oReader.Close()
MyCommand.Connection.Close()
End Sub