以前收集的一些資料---(一種新思路)使用一個“靜態”的ASP頁面來改進你的伺服器的效能

來源:互聯網
上載者:User
伺服器|靜態|效能|頁面 使用一個“靜態”的ASP頁面來改進你的伺服器的效能
通常大家顯示一個資料庫中的資訊時都是使用動態網頁面來產生的,
這對於一個小網站或者當資料庫內的容量不大時,系統的效能並沒有什麼影響。
但是當使用者要頻繁地訪問一個資料量很大的庫時,系統是不是還能夠承受得了了。
下面介紹一種“靜態”ASP技術來解決這個問題。
例如現在這個有一個人員資料庫,結構如下:
ID    First     Last         Company      Email       Phone
常規的辦法如下:
contact.asp
                           <table cellspacing=0 cellpadding=0>
                           <%
                              set query = getdb.execute("select * from contacts order by firstname, lastname")
                              do while not query.eof

                                 response.write "<tr><td><a href="""
                                 response.write "detail.asp?id=" & query("id")
                                 response.write """>" & query("first") & " " & query("last")
                                 response.write "</a></td></tr>"         
                                 query.movenext

                              loop
                              query.close
                              set query = nothing
                           %>
                           </table>

detail.asp
                           <table cellspacing=0 cellpadding=0>
                           <%
                              set query = getdb.e xecute("select * from contacts where id=" & request("id"))
                              if not query.eof then

                                 response.write "<tr>"
                &



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.