在C#中如何在ashx中跳转操aspx中,(带参数),急急急
context.Response.Redirect("xxx.aspx");
不行的话,你调用了ashx,肯定会返回到前台页面吧,然后在前台页面去跳转不就行了
$(document).on('click', '.table a['属性']', function () {
var cellId = 参数值;
window.parent.OpenPage({
id: '参数-' + cellId,
name: '随便',
url: '路径/Cpe.aspx?SID=<%=SID%>&cellId=' + cellId,
time: new Date()
});
});