,
<script type="text/javascript">
jQuery(function() {
var str;
$("#sortable").sortable();
$("#sortable").disableSelection();
$("#sortable li:lt(3)").css("font-weight", "bold");
$("#cmdUpdateSortOrder").click(function() {
str = $("#sortable li.ui-state-default").sortable();
var params = '{order:"' + str[0].title + ',' + str[1].title + ',' + str[2].title + '"}';
$.ajax({
type: "POST",
url: "NewsFrontPage.aspx/SubmitJSON",
data: params,
beforeSend: function(xhr) {
xhr.setRequestHeader("Content-type", "application/json; charset=utf-8");
},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg, status) {
$('#ajaxmsg')[0].innerHTML = msg.d;
},
error: function(xhr, msg, e) {
alert(msg);
}
});
});
});
</script>
jSON SubmitJSON (NewsFrontPage.aspx).
, .
. 'title' .