真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用ajax實(shí)現(xiàn)數(shù)據(jù)庫(kù)中隨機(jī)讀取5條數(shù)據(jù)動(dòng)態(tài)在頁(yè)面中刷新

這篇文章主要介紹了如何使用ajax實(shí)現(xiàn)數(shù)據(jù)庫(kù)中隨機(jī)讀取5條數(shù)據(jù)動(dòng)態(tài)在頁(yè)面中刷新,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)建站從2013年成立,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都做網(wǎng)站、成都網(wǎng)站建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元瓊結(jié)做網(wǎng)站,已為上家服務(wù),為瓊結(jié)各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話(huà):18980820575

前臺(tái)代碼: 

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ajaxRandomData.aspx.cs" Inherits="ajaxRandomData" %>



ajax隨機(jī)生成數(shù)據(jù)


//頁(yè)面的初始化
$(document).ready(function(){randomData()});
//頁(yè)面初始化函數(shù)
function randomData()
{
$.ajax({
type:'POST',
url:'ajaxRandomData.aspx',
data:{action:'randon'},
success:randomDatacallbace
});
}
// 頁(yè)面初始化回調(diào)函數(shù)
function randomDatacallbace(data)
{
if(data=="")
{
alert("暫時(shí)不能為您生成數(shù)據(jù)");
$("#randomData").html("暫時(shí)不能為您生成數(shù)據(jù)");
}
else
{
$("#randomData").html(data);
randomtime();//每隔5秒鐘執(zhí)行一次
}
}
//動(dòng)態(tài)變化頁(yè)面中顯示的數(shù)據(jù)。
function randomtime()
{
setTimeout(function(){randomData()},2000)
}





后臺(tái)代碼:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Text;
public partial class ajaxRandomData : System.Web.UI.Page
{
string StrAction = "";
protected void Page_Load(object sender, EventArgs e)
{
StrAction=Request["action"];
if(StrAction=="randon")
{
InitData();
}
}
/// 
///創(chuàng)建人:周昕
/// 創(chuàng)建時(shí)間:2009-6-9
/// 方法名稱(chēng):InitData
/// 方法作用:動(dòng)態(tài)的生成表格并隨機(jī)的生成5條數(shù)據(jù)
/// 
public void InitData()
{
SqlConnection mycon = new SqlConnection();
mycon.ConnectionString = ConfigurationManager.ConnectionStrings["BoBoConn"].ToString();
//隨機(jī)生成數(shù)據(jù)的關(guān)鍵
string sql = "select top 5 *,newid() from loginuser order by newid()";
SqlDataAdapter myda = new SqlDataAdapter(sql, mycon);
DataSet myset = new DataSet();
myda.Fill(myset);
DataTable mytable = myset.Tables[0];
int n = mytable.Rows.Count;
StringBuilder str = new StringBuilder();
str.Append("動(dòng)態(tài)刷新用戶(hù)信息用戶(hù)名用戶(hù)全名電子油箱");
for (int i = 0; i < n; i++)
{
string username = mytable.Rows[i]["username"].ToString();
string fullname = mytable.Rows[i]["FullName"].ToString();
string email = mytable.Rows[i]["Email"].ToString();
if (i % 2 != 0)
{
str.Append("" + username + "");
str.Append("" + fullname + "");
str.Append("" + email + "");
}
else
{
str.Append("" + username + "");
str.Append("" + fullname + "");
str.Append("" + email + "");
}
}
str.Append("");
Response.Clear();
Response.ContentType = "application/text";
Response.Write(str);
Response.End();
}
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何使用ajax實(shí)現(xiàn)數(shù)據(jù)庫(kù)中隨機(jī)讀取5條數(shù)據(jù)動(dòng)態(tài)在頁(yè)面中刷新”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


當(dāng)前名稱(chēng):如何使用ajax實(shí)現(xiàn)數(shù)據(jù)庫(kù)中隨機(jī)讀取5條數(shù)據(jù)動(dòng)態(tài)在頁(yè)面中刷新
當(dāng)前地址:http://weahome.cn/article/jjcioi.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部