ajax讀取資料庫資料程式碼例項
既然ajax可以向後臺傳送請求,也可以傳遞引數,當然就可以根據需要進行資料庫查詢功能。
下面就通過程式碼例項介紹一下如何實現此需求,當然程式碼比較簡單,僅作為參考之用。
程式碼例項:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> body{ font-size:12px; } </style> <script> function loadXMLDoc(keywords) { var xmlhttp; if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange = function () { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { document.getElementById("show").innerHTML = xmlhttp.responseText; } } xmlhttp.open("get", "demo/ajax/net/Query.aspx?keywords=" + escape(keywords), true); xmlhttp.send(); } window.onload = function () { var otxt = document.getElementById("txt"); var obt = document.getElementById("bt"); obt.onclick = function () { loadXMLDoc(otxt.value); } } </script> </head> <body> <input type="text" id="txt"/> <input type="button" id="bt" value="檢視效果"/> (例如輸入:css教程或者div教程) <div>結果:<span id="show"></span></div> </body> </html>
在文字框中輸入要查詢的課程名稱,然後點選按鈕即可實現查詢效果。asp.net後臺程式碼如下:
[C#] 純文字檢視 複製程式碼using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data.OleDb; using System.Configuration; namespace ajax { public partial class Query : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string keywords = Server.UrlDecode(Request.QueryString["keywords"]); if (String.IsNullOrEmpty(keywords.Trim())) { Response.Write("輸入查詢關鍵詞"); Response.End(); } string connString=ConfigurationManager.ConnectionStrings["access_con"].ConnectionString; string configPath=ConfigurationManager.ConnectionStrings["access_path"].ConnectionString; string conPath = HttpContext.Current.Server.MapPath(configPath); OleDbConnection conn = new OleDbConnection(connString + conPath); string sql = "select * from data where type='" + keywords + "' order by id desc"; OleDbCommand cmd = new OleDbCommand(sql,conn); try { conn.Open(); OleDbDataReader MyReader = cmd.ExecuteReader(); if (MyReader.Read()) { Response.Write("存在指定教程"); } else { Response.Write("不存在指定教程"); } } catch (Exception ex) { throw (ex); } finally { conn.Close(); } } } }
相關文章
- 原生ajax處理json格式資料程式碼例項JSON
- jquery實現的讀取dat-*自定義資料程式碼例項jQuery
- jQuery遍歷讀取json格式資料簡單程式碼例項jQueryJSON
- ajax讀取檔案中內容的程式碼例項
- 使用ajax指令碼取資料指令碼
- 利用ext的combobox載入資料庫資料程式碼例項資料庫
- oracle 資料庫例項Oracle資料庫
- 資料庫和例項資料庫
- 利用反射讀取資料庫資料反射資料庫
- sqlserver讀取oracle資料庫資料SQLServerOracle資料庫
- 單例項資料庫工具轉化多例項資料庫單例資料庫
- 單例項資料庫手工轉化多例項資料庫單例資料庫
- 動態引入js檔案使用隨機數防止讀取快取資料程式碼例項JS隨機快取
- 如何修改資料庫例項及資料庫名資料庫
- eazyexcel 讀取excel資料插入資料庫Excel資料庫
- 例項,資料庫,資料字典與資料庫建立的關係資料庫
- 資料庫例項 (SQL Server)資料庫SQLServer
- 資料庫設計例項資料庫
- oracle資料庫建立資料庫例項-九五小龐Oracle資料庫
- RAC資料庫恢復到單例項資料庫資料庫單例
- 4 管理資料庫例項和叢集資料庫資料庫
- js從陣列隨機取一個資料程式碼例項JS陣列隨機
- javascript資料曲線圖例項程式碼JavaScript
- jQuery清除表單資料程式碼例項jQuery
- 檢索table表格資料程式碼例項
- 資料處理等待效果例項程式碼
- 多例項資料庫刪除例項資料庫
- 資料庫–如何連線RDS例項,使用雲資料庫?資料庫
- mongodb關閉資料庫例項MongoDB資料庫
- oracle資料庫例項狀態Oracle資料庫
- Oracle例項和Oracle資料庫Oracle資料庫
- 建立ASM例項和資料庫ASM資料庫
- oracle資料庫與oracle例項Oracle資料庫
- javascript引用型別資料使用程式碼例項JavaScript型別
- 【資料庫資料恢復】SqlServer資料庫無法讀取的資料恢復案例資料庫資料恢復SQLServer
- 【轉】新建例項開啟已有的資料庫 — 資料庫與例項的區分測試資料庫
- 【資料庫資料恢復】ASM例項不能掛載的Oracle資料庫資料恢復案例資料庫資料恢復ASMOracle
- datatables使用ajax獲取資料