Kayıtlar

Haziran 25, 2015 tarihine ait yayınlar gösteriliyor

Update all rows in your MongoDB

Update script db.getCollection('kategoriler_copy').find().forEach(function(data) { db.getCollection('kategoriler_copy').update({_id:data._id},{$set:{"Dernek":'2'}}); });

Ajax request via dropdown use for asp.net mvc

<script type="text/javascript"> $(document).ready(function () { $("#ddldernek").change(function () { var selectedValue = $('#ddldernek').val(); $.post('@Url.Action("Index", "Etkinlikler")', { selection: selectedValue }, function (data) { // handle the server response here }); }); }); </script>