"A Microsoft spokesperson said that it had been in contact with the court since February “throughout the process that resulted in the disconnection of its sanctioned official from Microsoft services.” The spokesperson added that “at no point did Microsoft cease or suspend its services to the ICC.”
Microsoft declined to comment further in response to questions regarding the exact process that led to Khan's email disconnection, and exactly what it meant by “disconnection.” The ICC declined to comment.
However, German business magazine WirtschaftsWoche reported Tuesday that Microsoft's lawyers have now reached the view that it merely provides a technical platform and that its customers decide whether to give their employees access to its services. Microsoft would no longer intervene in scenarios similar to the ICC case, WirtschaftsWoche wrote."
Source: https://www.politico.eu/articl...ump-tech-icc-amazon-google/
So while they haven't targeted the ICC, they seem to have targeted a sanctioned individual and cut that individual off from their services. At least I cannot read the statement from their spokesperson in any other way.
It can however be understood as they did this on behalf of the ICC, which would line up with Smith's statements that they never cut off services to the ICC. But I don't know if there is any confirmed sources back that up.
Question
Martin.D
Hi,
Im having an issue i passing the selected items from a grid to method on a controller.
My View looks like this;
<script type="text/javascript" language="javascript">
function ClearInterfaceState() {
var items = {};
var grid = $('#Visits').data('kendoGrid');
var selectedElements = grid.select();
for (var j = 0; j < selectedElements.length; j++) {
var item = grid.dataItem(selectedElements[j]);
items[j] = item.VisitId;
}
var MyAppUrlSettings = {
MyUsefulUrl : '@Url.Action("ClearInterfaceState","QuickFixes")'
}
$.ajax({
url: MyAppUrlSettings.MyUsefulUrl,
data: items,
type: "post",
dataType: "json",
contextType: "application/json",
traditional: true,
success: function (result) {
alert("Successfully changed");
},
error: function (_err) {
alert(_err);
}
});
};
</script>
The data in the items variable is there as I put an alert in to double check. The issue seems to be with the controller as the items is null?
[Authorize]
[HttpPost]
public JsonResult ClearInterfaceState(int[] items)
{
return Json(new { success = true }, JsonRequestBehavior.AllowGet);
// Some Code
}
Any help with this would be great as I've only been developing for a year now and javascript is still a mystery to me
Link to comment
https://www.neowin.net/forum/topic/1392222-passing-array-of-int-to-mvc-controller-with-javascript/Share on other sites
6 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now