ASP.NET Framework 4客户端回调演示代码抱怨ListBox1

本文关键字:代码 ListBox1 回调 NET Framework 客户端 ASP | 更新日期: 2023-09-27 18:25:26

来自这组ASP.NET演示代码:

http://msdn.microsoft.com/en-us/library/ms178209.aspx

在ASP.NET项目的VS2010中,我收到错误消息:

引用ListBox1的C#源文件中的"当前上下文中不存在名称'ListBox1'"(第35-37行)。如果我在类中添加ListBox1的声明,错误就会消失,但当我按F5运行它时,我会收到一条消息,表明ListBox1已经定义。我错过了什么?

ClientCallback.aspx。cs:

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 ClientCallback : System.Web.UI.Page,
 System.Web.UI.ICallbackEventHandler
{
// protected ListBox ListBox1;
protected System.Collections.Specialized.ListDictionary catalog;
protected String returnValue;
protected void Page_Load(object sender, EventArgs e)
{
    String cbReference =
        Page.ClientScript.GetCallbackEventReference(this,
        "arg", "ReceiveServerData", "context");
    String callbackScript;
    callbackScript = "function CallServer(arg, context)" +
        "{ " + cbReference + ";}";
    Page.ClientScript.RegisterClientScriptBlock(this.GetType(),
        "CallServer", callbackScript, true);
    catalog = new System.Collections.Specialized.ListDictionary();
    catalog.Add("monitor", 12);
    catalog.Add("laptop", 10);
    catalog.Add("keyboard", 23);
    catalog.Add("mouse", 17);
    ListBox1.DataSource = catalog;
    ListBox1.DataTextField = "key";
    ListBox1.DataBind();
}
public void RaiseCallbackEvent(String eventArgument)
{
    if (catalog[eventArgument] == null)
    {
        returnValue = "-1";
    }
    else
    {
        returnValue = catalog[eventArgument].ToString();
    }
}
public String GetCallbackResult()
{
    return returnValue;
}
}

和ClientCallback.aspx:

<%@ Page Language="C#" AutoEventWireup="true" 
CodeFile="ClientCallback.aspx.cs" Inherits="ClientCallback" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 
1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html  >
<head id="Head1" runat="server">
<title>Client Callback Example</title>
<script type="text/ecmascript">
  function LookUpStock() {
      var lb = document.getElementById("<%=ListBox1.ClientID%>");
      try {
          var product = lb.options[lb.selectedIndex].text;
          CallServer(product, "");
      }
      catch (err) {
          alert("Please select a product.");
      }
  }
  function ReceiveServerData(rValue) {
      document.getElementById("<%=ResultsSpan.ClientID%>").innerHTML = rValue;
  }
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
  <asp:ListBox ID="ListBox1" Runat="server"></asp:ListBox>
  <br />
  <br />
  <input type="button" value="Look Up Stock" onclick="LookUpStock()" />
  <br />
  <br />
  Items in stock: <span id="ResultsSpan" runat="server"></span>
  <br />
</div>
</form>
</body>
</html>

ASP.NET Framework 4客户端回调演示代码抱怨ListBox1

问题是ClientCallBack.aspx。designer.vb类没有声明列表框。像以前一样从网站上复制代码,然后把这行代码放在后面的代码中

  Protected WithEvents ListBox As Global.System.Web.UI.WebControls.ListBox

实现System.Web.UI.ICallbackEventHandler受保护的目录为ListDictionary

现在编辑标记中的这两行:

第11行将ListBox1更改为ListBox第26行将Listbox1更改为ListBox

你应该是金黄色的。

希望对有所帮助

看看另一篇文章,我认为它解决了您的问题:命名空间*已包含*的定义

我认为问题是,这些示例文件是为ASP.Net"网站"设置的,在那里你使用的是ASP.Net"Web项目"(大多数人也使用)。

如果您查看ASPX文件,将CodeFile更改为CodeBehind,它应该与您在codeehind中的声明一起使用。

页面语言="C#"AutoEventWireup="true"CodeFile="ClientCallback.aspx。cs"Inherits="ClientCallback"

"网站"类型的项目在代码背后不使用声明,但几乎没有人再使用该项目类型,所以不确定他们为什么要这样设置示例。