繁体   English   中英

如何显示来自javascript响应的文本

[英]how to display text from response from javascript

using System;
using System.Data;
using System.Configuration;
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;

public partial class _Default : System.Web.UI.Page 
{
    NurseCounter nc;
    protected void Page_Load(object sender, EventArgs e)
    {
        int id = int.Parse(Request.QueryString["counterid"]);
        int play = int.Parse(Request.QueryString["display"]);
        try
        {
            nc = new NurseCounter(id);
            Response.Write(nc.RenterCounter(play));
        }
        catch
        {
            Response.Write("Counter Error Id=" + Request.QueryString["counterid"]);
        }
    }
}

当我在test.htm中测试时


<!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>Untitled Page</title>
</head>
<body>
<script type="text/javascript" src="http://localhost:4464/NurseCounter/Default.aspx?counterid=2&display=6"></script>
</body>
</html>

和,响应不会显示在test.htm中

SO: 通过SRC属性将vars传递给JavaScript

*编辑 :已更新以容纳您的评论。

如果要显示服务器端脚本/页面返回的任何内容,则需要使用AJAX。 我建议为此使用jQuery 包含它后使用它的一个简单示例如下所示:

$.get("mypage.aspx", function(data){
  alert("Data Loaded: " + data);
});

在页面上调用此按钮后,将出现一个警告对话框,页面输出包含在“数据”中。 浏览jQuery的教程部分 学习,生活,热爱它! :)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM