strSQL = "SELECT TOP 10 * FROM article_tbl WHERE status= '3' ORDER BY article_view DESC"
With objCmd2
.Connection = objConn
.CommandText = strSQL
.CommandType = CommandType.Text
End With
dtAdapter2.SelectCommand = objCmd2
dtAdapter2.Fill(dtSet2)
art_hit.DataSource = dtSet2
art_hit.DataBind()