動態顯示文字框的字串數(ajax入門小程式) 

來源:互聯網
上載者:User

首先添加一個html頁其頁面代碼如下:<html>
<head>
<title>在ASP.NET的第一個Ajax小程式</title>
<link rel="stylesheet" type="text/css" href="../css/main.css"/>
<script language="javascript">
        var xmlHttp
        function showHint(str)
        {
            if (str.length > 0)
            {
                var url="GetRequest.aspx?name=" + str
                if (window.ActiveXObject) { 
                    xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); 
                }
                  xmlHttp.onreadystatechange=stateChanged
                xmlHttp.open("POST", url , true)
                xmlHttp.send(null)
            }
            else
            {
                document.getElementById("txtHint").innerHTML=""
            }
        }
        function stateChanged()
        {
            if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
            {
                document.getElementById("txtHint").innerHTML=xmlHttp.responseText
            }
        }

</script>
</head><body>
<div class=content>
<h1>純Ajax實現的小程式</h1>
<form>
    <p>輸入一個字串:<input type="text" id="txt1"onkeyup="showHint(this.value)"></p>

<p>
    字串的長度: <span id="txtHint"></span></p> 
   </form> </div></body>
</html>

述代碼中GetRequest.aspx?name=" + str 指明將請求頁面GetRequest.aspx並把使用者輸入的字串傳遞給頁面GetRequest.aspx,所以下一步就是建立GetRequest.aspx頁面計算字串長度,後台代碼如下: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;
public partial class PureAjax_GetRequest : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Request.QueryString["name"] != "")
            Response.Write(Request.QueryString["name"].Length);
        else
            Response.Write("NULL");
    }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.