显示消息错误“不存在”
本文关键字:不存在 错误 消息 显示 | 更新日期: 2023-09-27 17:56:39
下面是代码。它说"显示消息"的地方是我遇到问题的地方。
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;
提前谢谢。
看起来您是从代码项目下载了此代码。 主页上的示例似乎与实际解决方案中的代码不一致。 尝试将DisplayMessage
更改为lblMsgSend
,看看是否可以修复它。
更好的是,查看ContactControl.ascx
文件并查找标签 ID:
<p>
<asp:Label ID="lblMsgSend" runat="server" Visible="false" />
</p>