response.write上的随机html

时间:2012-12-21 15:52:40

标签: jquery asp-classic

你好我们正在研究他们使用ASP代码的船员。来自PHP,我有点困惑。我有一个使用$ .post()与JQuery一起发送的表单。

 $.post("sendmail.asp",{
       fname:$("#fName").val(),
       lname:$('#lName').val(),
       addy1:$('#addy1').val(),
       addy2:$('#addy2').val(),
       city:$('#city').val(),
       zip:$('#zip').val(),
       state:$('#state').val(),
       ephone:$('ephone').val(),
       dphone:$('dphone').val(),
       email:$('#email').val(),
       comm:$('comm').val()
       },function(e){
            alert("Server response: "+e)
       })

我调用一个脚本sendmail.asp,它使用一个类来发送邮件,在邮件发送后我做response.write("email sent")但是我得到了

<random HTML that seems to be generated from bootstrap>
email sent

我想要的只是email sent。我不知道我做错了什么。谢谢你的帮助。

2 个答案:

答案 0 :(得分:2)

response.Clear

之前尝试response.write

答案 1 :(得分:1)

你的sendmail.asp脚本中是否有include指令?

<!--#include virtual="somefilename"--> 

容易错过,因为它看起来像是评论。