在我的項目asp.net(c#)中,我使用線程來處理一些消息。我有一個顯示頁面,其中包含一個列表框,其中包含處理消息時採取的所有操作。還有一個我正在處理信息的課程。
的Default.aspx:
protected void Page_Load(object sender, EventArgs e)
{
//starts the thread and call the method from Process.cs
}
public void SetListItem(string text)
{
myListBox.Items.Add(text);
myListBox.DataBind();
}
Process.cs
public class Process
{
public Process()
{
Default defaultPage;
defaultPage.SetListItem("==> Received message!");
}
}
但列表框不顯示什麼。 有沒有人有我的錯在哪裏ideea? 謝謝。
傑夫
不,這是不好的..我的列表框仍然不顯示任何東西 – 2010-12-02 15:04:40