0

下面是代码。它说“DisplayMessage”的地方是我有问题的地方。

protected void btnSend_Click(object sender, EventArgs e)
    {
        SendMail();
        DisplayMessage.Text = "Thank you for the comment! Please hit the 'Return to Main Page' to return to the Main Page!";
        DisplayMessage.Visible = true;
        txtPhone.Text = "";
        txtEmail.Text = "";
        txtName.Text = "";
        txtComment.Text = "";
    }

我是否缺少某种资源?这是我目前正在使用的。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net;

提前致谢。

4

1 回答 1

1

看起来您从codeproject下载了此代码。主页上的示例似乎与实际解决方案中的代码不一致。尝试更改DisplayMessagelblMsgSend,看看是否可以解决它。

更好的是,查看ContactControl.ascx文件并查找标签 ID:

<p>
    <asp:Label ID="lblMsgSend" runat="server" Visible="false" />
</p>
于 2013-01-30T21:54:16.943 回答