请教:javascript利用定时器调用c#中函数的问题
在c#中定义一个无参数的函数来获取当前时间,javascript中的一个函数调用c#的函数并打印出时间,在javascript中利用定时器设定每秒钟调用一次这个函数。运行程序,发现javascript的确每秒钟调用一次函数,但是值始终的程序第一次加载得到的。
请问怎么可以动态的更新?代码如下
C#:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
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;
using System.Xml.Linq;
namespace WebApplication17
{
public partial class _Default : System.Web.UI.Page
{
public string Hello()
{
string str = DateTime.Now.ToString();
return str;
}
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
Aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication17._Default" %>
<!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 runat="server">
<title>Untitled Page</title>
<script language="javascript">
function say()
{
var s = "<%=Hello()%>";
document.writeln(s);
}
window.onload = function() {
objInterval = setInterval("say()", 1000);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
--------------------编程问答-------------------- 你的代码有问题,使用ajax
http://blog.csdn.net/xuexiaodong2009/article/details/6533466
使用微软的标准方法实现Ajax --------------------编程问答-------------------- var s = "<%=Hello()%>";
服务器生成是已经是一个指定的值了,不会改变了,除非重新刷新 --------------------编程问答-------------------- 您的意思我明白了。
我是用的.net2.0。用什么方法来实现呢。ajax吗? --------------------编程问答-------------------- AJAX调用后台页面 ,你那个时间是在你第一次请求服务器的时候就已经生成了的,不会改变.
补充:.NET技术 , C#