Response.Write "<script>alert('发送成功,');</script>"
IfErr.number=0ThenResponse.Write"<script>alert('发送成功,我们会第一时间回复您,谢谢。');</script>"ElseR...
If Err.number=0 Then
Response.Write "<script>alert('发送成功,我们会第一时间回复您,谢谢。');</script>"
Else
Response.Write "<script>alert('发送失败,这可能是由于邮箱服务器产生的,请重试。');history.go(-1);</script>"
End If
这发送成功了如何返回首页?
If Err.number=0 Then
Response.Write "<script>alert('发送成功,我们会第一时间回复您,谢谢。');</script>"
response.redirect "FeedbackView.asp"
Else
Response.Write "<script>alert('发送失败,这可能是由于邮箱服务器产生的,请重试。');history.go(-1);</script>"
End If
这样写的话就没有点确定,就直接反回首页了, 应该怎么改过 展开
Response.Write "<script>alert('发送成功,我们会第一时间回复您,谢谢。');</script>"
Else
Response.Write "<script>alert('发送失败,这可能是由于邮箱服务器产生的,请重试。');history.go(-1);</script>"
End If
这发送成功了如何返回首页?
If Err.number=0 Then
Response.Write "<script>alert('发送成功,我们会第一时间回复您,谢谢。');</script>"
response.redirect "FeedbackView.asp"
Else
Response.Write "<script>alert('发送失败,这可能是由于邮箱服务器产生的,请重试。');history.go(-1);</script>"
End If
这样写的话就没有点确定,就直接反回首页了, 应该怎么改过 展开
2个回答
展开全部
你可以写一个方法,我贴个c# code,看看对你有没有帮助
protected virtual void MsgBox(string msgString, string locationURL)
{
Page.Response.Clear();
string registerJS = "<script language=JavaScript>{";
registerJS += "alert('" + msgString + "');\n";
registerJS += "window.location.href='" + locationURL + "'; \n}";
registerJS += "</script>";
Page.Response.Write(registerJS);
}
protected virtual void MsgBox(string msgString, string locationURL)
{
Page.Response.Clear();
string registerJS = "<script language=JavaScript>{";
registerJS += "alert('" + msgString + "');\n";
registerJS += "window.location.href='" + locationURL + "'; \n}";
registerJS += "</script>";
Page.Response.Write(registerJS);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询