problems with passing html to the server with jquery
- by CoffeeCode
i have an ajax call
$.ajax({
url: '<%=Url.Action("SaveDetails","Survey") %>',
dataType: 'JSON',
cache: false,
data: { Id: selectedRow.Id, Value: surveyValue, FileName: filename, FileGuid: fileguid },
success: function(data) {
...
…