主頁 > 知識庫 > Ajax+ASP和Flash+ASP數(shù)據(jù)讀取取方法有些相似的實現(xiàn)方法

Ajax+ASP和Flash+ASP數(shù)據(jù)讀取取方法有些相似的實現(xiàn)方法

熱門標簽:虛擬電話外呼系統(tǒng) 沈陽電話機器人公司 成都ai外呼系統(tǒng)線路 云南便宜外呼系統(tǒng)平臺 鄢陵學校如何做地圖標注 長春公司外呼系統(tǒng)中心 廣東語音外呼系統(tǒng)公司 沈陽三五防封電銷卡 鄭州智能外呼電銷機器人廠家
Ajax+ASP和Flash+ASP數(shù)據(jù)存取方法
兩種數(shù)據(jù)存取方法差不多。
===============================
下面是一個ChatRoom的Ajax部分代碼:
var ajaxHttpRequest = false;
function ajaxInit() {
 if(window.XMLHttpRequest) { //Mozilla, Opera, ...
  ajaxHttpRequest = new XMLHttpRequest();
  if(ajaxHttpRequest.overrideMimeType) {
   ajaxHttpRequest.overrideMimeType("text/xml");
  }
 }
 else if(window.ActiveXObject) { //IE
  try{
   ajaxHttpRequest = new ActiveXObject("Msxml2.XMLHTTP");
  }
  catch(e) {
   try{
    ajaxHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
   }
   catch(e) {
   }
  }
 }
 if(!ajaxHttpRequest) {
  window.alert("不能創(chuàng)建XMLHttpRequest對象實例");
  return false;
 }
}

function ajaxSendPost(url, values, processRequest) {
 ajaxHttpRequest.open("POST",url,true);
 ajaxHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
 ajaxHttpRequest.send(values);
 ajaxHttpRequest.onreadystatechange = processRequest;
}
/*
function ajaxSendGet(url) {
 ajaxHttpRequest.open("GET",url,true);
 ajaxHttpRequest.send(null);
 ajaxHttpRequest.onreadystatechange = processRequest;
}
*/
ajaxInit();

var sound = false;
var isMove = true;

function send() {
 var msg=escape((document.getElementById("msg")).value); //escape解決Ajax中文籌碼問題
 if(msg=="") {
  setSuggest("請輸入內容");
 }
 else {
  var color = document.getElementById("selectColor").value;
  var values = "msg=" + msg + "color=" + color;
  ajaxSendPost("process.asp", values, processSendRequest);
  document.getElementById("msg").value = "";
  document.getElementById("msg").focus();
 }
}

function processSendRequest() {
 if(ajaxHttpRequest.readyState==4) {
  if(ajaxHttpRequest.status==200) {
   if(ajaxHttpRequest.responseText!="") {
    var chatContent = document.getElementById("chat_content");
    var msgDiv = document.createElement("div");
    msgDiv.innerHTML = ajaxHttpRequest.responseText;
    chatContent.appendChild(msgDiv);
    sound = true;
   }
  }
  else {
   setSuggest("您請求的頁面有異常");
   //alert("您請求的頁面有異常");
  }
 }
}

function getAllMsg() {
 setSuggest("nbsp;");
 ajaxSendPost("process.asp","",processSendRequest);
 if(sound) {
  setSuggest("embed type=\"application/x-mplayer2\" src=\"sound/message.wav\"

autostart=\"true\" loop=\"false\" height=0 width=0 />nbsp;");
  sound=false;
 }
}

function IamComing() {
 ajaxSendPost("iamcoming.asp", "", processSendRequest);
 (document.getElementById("msg")).focus();
}

function showOnline() {
 ajaxSendPost("showOnline.asp", "", processShowOnline);
}

function processShowOnline() {
 if(ajaxHttpRequest.readyState==4) {
  if(ajaxHttpRequest.status==200) {
   if(isFinite(ajaxHttpRequest.responseText)) {
    document.getElementById("online").innerHTML =

ajaxHttpRequest.responseText;
   }
  }
 }
}
=================================
下面是我一個Flash留言的數(shù)據(jù)讀取的部分代碼: http://www.linjimu.com.cn/Flash
ls = new LoadVars();
ls.Action = "Read";
ls.CurrentPage = _root.CurrentPage;
//ls load and send ,ld load result;
ld = new LoadVars();
ls.sendAndLoad("Advice.asp", ld, "post");
_root.gotoAndPlay("Wait");
_root.WaitBtText = "返回留言";
_root.Frame = "Send";
_root.TextMessage.text = "\n  正在讀取留言數(shù)據(jù)...\n\n  請稍后...";
ld.onLoad = function(ok) {
 if (ok) {
  if (this.message == "OK") {
   _root.gotoAndPlay("ListView");
  } else {
   _root.gotoAndPlay("Wait");
   _root.WaitBtText = "返回留言";
   _root.Frame = "Send";
   _root.TextMessage.text = "  讀取數(shù)據(jù)不成功!\n\n  可能發(fā)生以下錯誤:\n  1.

讀取數(shù)據(jù)超時,請稍后再試.\n  2.空間不支持ASP."+this.message;
  }
 } else {
  _root.gotoAndPlay("Wait");
  _root.WaitBtText = "返回留言";
  _root.Frame = "Send";
  _root.TextMessage.text = "  讀取數(shù)據(jù)不成功!\n\n  可能發(fā)生以下錯誤:\n  1.讀取數(shù)據(jù)

超時,請稍后再試.\n  2.空間不支持ASP.";
 }
};
delete ls;
stop();
================
相比一下,他們都有相似之處:
AJax:
ajaxHttpRequest.open("POST",url,true);//發(fā)送數(shù)據(jù)的方法,類型,url地址..
ajaxHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
ajaxHttpRequest.send(values);//發(fā)送數(shù)據(jù)
ajaxHttpRequest.onreadystatechange = processRequest; //processRequest是一個過程函數(shù),對返回數(shù)據(jù)的

處理。
--------
Flash:
ls = new LoadVars();
ls.Action = "Read";//是發(fā)送數(shù)據(jù)
ls.CurrentPage = _root.CurrentPage;//是發(fā)送數(shù)據(jù)
//ls load and send ,ld load result;
ld = new LoadVars();
ls.sendAndLoad("Advice.asp", ld, "post");//發(fā)送數(shù)據(jù)的方法,類型,url地址..
ld.onLoad = function(ok) {//code...} //也是一個過程函數(shù),對返回數(shù)據(jù)的處理。

不過,在web方面,Ajax的頁面完全基于HTML,文本網(wǎng)頁會更有利于搜索引擎的搜索。
Flash開發(fā)人員還是偏重圖形、動畫設計,F(xiàn)lash能夠更容易的調用瀏覽器以外的外部資源。比如攝像頭、麥克風等。然而這是普通的HTML無法完成的。

他們的關系請去baidu一下:flash與AJAX http://www.baidu.com/s?wd=flash+ajax

標簽:平頂山 遼陽 朝陽 孝感 湖北 四平 防城港 馬鞍山

巨人網(wǎng)絡通訊聲明:本文標題《Ajax+ASP和Flash+ASP數(shù)據(jù)讀取取方法有些相似的實現(xiàn)方法》,本文關鍵詞  Ajax+ASP,和,Flash+ASP,數(shù)據(jù),;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Ajax+ASP和Flash+ASP數(shù)據(jù)讀取取方法有些相似的實現(xiàn)方法》相關的同類信息!
  • 本頁收集關于Ajax+ASP和Flash+ASP數(shù)據(jù)讀取取方法有些相似的實現(xiàn)方法的相關信息資訊供網(wǎng)民參考!
  • 推薦文章