2016-08-16 49 views

回答

0

也許這篇文章可以帶你到一個解決方案。這是關於電子郵件和整個Web控制可能與整個Web表單相同。

Article to email entire web control

在你可以使用jQuery阿賈克斯一起採取由ASP.NET生成的整個HTML並將其發送到服務器的另一方面。

下面是一個例子:

$.ajax({ 
    url: "YourURLToSaveWebForm", 
    type: 'POST', 
    data: { WebForm: $(document).html() }, 
    success: function (result) { 
     alert('Completed...'); 
    }, 
    error: function (request, error) { 
     alert(request.responseText + error); 
    } 
}); 
相關問題