当前位置:编程学习 > C#/ASP.NET >>

如何在页面里面实现定时向数据库里面添加数据啊???例如每隔3分钟向数据库里面添加一篇回复的内容

真的很感谢大虾的指教 ,,,我将奉献我的45分做为报酬...越快越好  在线等 !! --------------------编程问答-------------------- JS定时刷新该页面不就得了
window.setInterval("refreshFrom();",180000)
    function refreshFrom()
    {
        location.href=location.href+"&"+new Date();
    }
--------------------编程问答--------------------
function fasf()
    {
       
        
        InsertData();        
        setTimeout("fasf()",100000)
    }

function InsertData()
    {
        var httpxml = new ActiveXObject("Microsoft.XMLHTTP");
        httpxml.open("post","RevertMessage.aspx",false);
        httpxml.send(null);
        if(httpxml.status==200)
        {
            .................
        }
    }
--------------------编程问答-------------------- location.href="放你的页面地址"; --------------------编程问答-------------------- 如果你有数据库的权限,那么就用数据库的“作业”定时的添加数据。 --------------------编程问答-------------------- 在网页上实现的话有个缺点:有人在浏览页面时这段代码才能激活
--------------------编程问答-------------------- 不行啊...我是用定时刷新的 但是一刷新我在textbox里面添的内容就清空了...加到数据库里面的都是空的.... --------------------编程问答--------------------
引用 6 楼 hy85618093 的回复:
不行啊...我是用定时刷新的 但是一刷新我在textbox里面添的内容就清空了...加到数据库里面的都是空的....


别定时刷新..用ajax异步访问
参看我发给你的代码.. --------------------编程问答-------------------- 用lovehongyun 的方法还要做一个接收页面
你在页面实现 ICallbackEventHandler 接口,就可以实现你的目的了
--------------------编程问答-------------------- 比如页面:
<%@ Page Language="C#" AutoEventWireup="true" Debug="true" CodeFile="Index.aspx.cs" Inherits="Index" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<title></title> 
</head> 
<body> 
<form id="Form1" runat="server"> 
<div> 
<asp:TextBox ID="TestTxt" runat="server"></asp:TextBox> 
<br /> 
<br /> 
<input onclick="CallTheServer(TestTxt.value)" type="button" value="提交" /> 
<br /> 
<br /> 

</div> 
</form> 
</body> 
</html> 


后台代码:
using System; 
using System.Collections; 
using System.Configuration; 
using System.Data; 
using System.Web; 
using System.Web.Security; 
using System.Web.UI; 
using System.Web.UI.HtmlControls; 
using System.Web.UI.WebControls; 
using System.Web.UI.WebControls.WebParts; 

public partial class Index : System.Web.UI.Page, ICallbackEventHandler 

    string returnValue; 
    
    protected void Page_Load(object sender, EventArgs e) 
    { 
    string ReceiveScript = @" 
    function ReceiveServerData(arg) 
    { 
        alert(arg); 
    }"; 
    ClientScript.RegisterClientScriptBlock(this.GetType(), "ReceiveServerData", ReceiveScript, true); 
    
    string CallbackScript = @" 
    function CallTheServer(arg) { 
    " + ClientScript.GetCallbackEventReference(this, "arg", "ReceiveServerData", null) + @"; 
    } 
    "; 
    ClientScript.RegisterClientScriptBlock(this.GetType(), "CallTheServer", CallbackScript, true); 
    } 
    
    // 接收客户端消息 eventArgument就是客户端传递过来的那个arg
    public void RaiseCallbackEvent(string eventArgument) 
    { 
        //这里执行数据库操作; 
        returnValue = "ok"
    } 
    
    // 返回客户端 
    public string GetCallbackResult() 
    { 
        return returnValue; 
    } 
}
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,