在 C# 编程中,我通常执行以下操作:对于 json 响应,我使用 jquery 调用 .asmx 或 .ashx 文件并解析响应。
对于 html 响应,哪个更易于编程和以后改进?像我已经做的那样调用 .aspx 文件还是有其他方法?
我不喜欢 .ashx 的想法,因为在 Designer 模式下看不到数据。
我想要的只是在客户端是这样的:
$.ajax({
type: "POST",
url: "something",
cache: false,
success: function(msg) {
// Replace the div's content with the page method's return.
$("#container").html(msg);
}
});