我创建了一个用户可以发送好友请求的Web应用程序。如果有两个用户 A 且 B 。如果 A 用户向 B 发送好友请求,则会在 B 用户信息中心上弹出一个显示消息。在弹出框中,有两个按钮确认或忽略。
如果用户点击确认按钮,则关闭该弹出框需要一些时间。因为在backgroud中它执行发送电子邮件的代码。一旦发送电子邮件,然后该弹出框关闭。所以我想在点击确认按钮后立即关闭该弹出框,然后在向该用户发送邮件后立即关闭。
以下是接受请求和发送邮件
的代码#region dlUserFriendRequests_ItemCommand
protected void dlUserFriendRequests_ItemCommand(object source, DataListCommandEventArgs e)
{
HtmlTable objDataTable;
//Panel objDataTable;
switch (e.CommandName)
{
case "confirm":
RadioButtonList objRadioButtonList;
int intFriendRelationID = -1;
objRadioButtonList = (RadioButtonList)e.Item.FindControl("rblstFriends");
if (objRadioButtonList != null)
{
intFriendRelationID = UserManagementBL.AcceptUserFriendRequest(Convert.ToInt32(e.CommandArgument), this.LoginSessionDO.UserID, objRadioButtonList.SelectedItem.Text);
if (intFriendRelationID > 0)
{
int SentByUserID = Convert.ToInt32(e.CommandArgument);
DataTable dtbSenderdetails = null;
string SenderEmail = "";
dtbSenderdetails = UserManagementBL.GetUserDetails(SentByUserID);
if (dtbSenderdetails != null)
{
SenderEmail = dtbSenderdetails.Rows[0]["UserName"].ToString();
SendConfirmationMail(SenderEmail);
Response.Redirect("~/Dashboard/Dashboard.aspx",false);
//GetUserFriendRequests();
}
}
}
break;
case "Ignore":
int intFriendRequestID = -1;
intFriendRequestID = UserManagementBL.IgnoreUserFriendRequest(Convert.ToInt32(e.CommandArgument), this.LoginSessionDO.UserID);
GetUserFriendRequests();
break;
}
}
#endregion
#region Send confirmation mail
public void SendConfirmationMail(string email)
{
//DataTable dtblUserDetails = UserManagementBL.GetUserByUserName(email);
//if (dtblUserDetails != null)
//{
//int UserID = Convert.ToInt32(dtblUserDetails.Rows[0]["UserID"]);
//string FirstName = Convert.ToString(dtblUserDetails.Rows[0]["FirstName"]);
//string LastName = Convert.ToString(dtblUserDetails.Rows[0]["LastName"]);
string FirstName = this.LoginSessionDO.FirstName;
string LastName = this.LoginSessionDO.LastName;
var parameters = new System.Collections.Generic.Dictionary<string, string>();
parameters.Add("USER_NAME", string.Format("{0} {1}", FirstName, LastName));
parameters.Add("USER_IMAGE_URL", string.Format(SystemConfiguration.GetSiteURL() + "UserControls/UserPhoto.ashx?UserID={0}", this.LoginSessionDO.UserID));
string ToAddress = email;
string subject = FirstName + " " + LastName + " confirmed you as a friend on Lifetrons.";
CommonFunctions.CommonFunctions.SendEmail(SystemConfiguration.GetEmailSenderAddress(), ToAddress, subject, CommonFunctions.EmailTemplates.AcceptFriendRequest, parameters);
//}
}
#endregion
这是我的弹出框图像
那么如何在确认按钮点击后立即关闭该弹出框?我的代码有变化吗?
答案 0 :(得分:1)
您可以在JavaScript中执行此操作。 我假设您已经在使用AJAX执行Confirm
操作,否则它只会重新加载页面而且您的弹出窗口不应该在那里(因为它们已经被确认了?)。击>
如果你在前端有jQuery,你可以使用:
$('#confirm-box-id').hide();
如果没有jQuery,您可以使用:
document.getElementById('confirm-box-id').style.display = 'none';
重新阅读你的消息,这似乎只是一个长期的行动。您应该注意,如果您确实隐藏了此内容并且未使用上述代码显示任何进度指示,例如,您的用户可能会离开或关闭浏览器,可能导致操作停止处理或强制终止服务器端,以便确认永远不会发生。