更好的aspx页面性能

时间:2014-10-17 10:30:17

标签: asp.net performance webforms

当我在firebug(网络标签)中观看我的网站时,aspx页面太长而无法加载。如何减少加载时间?firebug show。此页面仅为文本和图像,并且有一个小的数据库查询。

这是我的代码:

      公共函数SelectForShow()As DataTable

       尝试

           Dim query As String =“SELECT TOP 10 * FROM Tbl_News WHERE NewsConfirm ='True'ORDER BY NewsID DESC”

                           使用sqlcon作为新的SqlConnection(ConnectionString)
                   Dim sqlAdapter As New SqlDataAdapter(query,sqlcon)
                    Dim Dt As New DataTable()
                    sqlAdapter.Fill(DT)
                    返回Dt
            赶上前例外                 扔前             结束尝试         结束功能

并在转发器中获取数据

0 个答案:

没有答案