<asp:ImageButton ID="IBHead" runat="server" ImageUrl="/images/cphoto.gif"
OnClientClick="Create()" onclick="IBHead_Click"/>
<img id="imgCreat" style="display: none;" />
function Create() {
$("imgCreat").src = "ImgCropper.ashx?ph=" + ph + "&" + Math.random();
}这是我的前台代码,当我点击按钮的时候,就进入了,ImgCropper一般处理程序,但是我想让他执行完后条用js
imgCropper.ashx中
context.Response.ContentType = "text/html";
context.Response.Charset = "gb2313"; HttpContext.Current.Response.Write("<script>Master.parent.UpdateMsddg()</script>");但是怎么也不执行UpdateMsddg函数,另外我这个页面是在内容页,有母版的,是不是这个他不走了啊,我在这个方法中就写了alert,但是他就不走,请高手指点
window.parent.UpdateMsddg这个样子进行调用
一般处理程序中:HttpContext.Current.Response.Write("Master.parent.UpdateMsddg()");
在前台页面中document.write(结果);