Kayıtlar

Visual Studio'da proje listesinden gereksiz proje isimlerini silmek isterseniz

There is an MSDN article  here  which suggests that you just move the projects to a new directory. However, as you mentioned, the list of projects is kept in the registry under this key: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\ \ProjectMRUList and the list of recent files is kept in this key: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\ \FILEMRUList Some people have automated clearing this registry key with their own tools:

jsonp

http://www.sitepoint.com/jsonp-examples/

Tablolar üzerindeki değişiklikleri sql server üzerinden mail attırmak istersek

Bu adresi takip edin http://solutioncenter.apexsql.com/get-an-alert-when-a-certain-record-changes/

windows'da dosyalar silmek için

Powershell scripti ile silme yazmak için https://technet.microsoft.com/en-us/library/ee176938.aspx Powershall scripti scheduled task'a bağlamak http://www.metalogix.com/help/Content%20Matrix%20Console/SharePoint%20Edition/002_HowTo/004_SharePointActions/012_SchedulingPowerShell.htm

I cannot add a new domain because of existing DNS records

APPLIES TO: Plesk Symptoms An attempt to create a new domain fails and the following error is shown: DNS records for domain with such name already exist or The subdomain with such name already exists or This DNS record already exists Cause A DNS record for the domain you are trying to add already exists in the Plesk database, so a new domain with the same name cannot be added. Resolution Try to find a record with a similar name in the DNS settings of the existing domains. If it is difficult to find this manually: Open the "psa" database: Linux: # mysql -uadmin -p`cat /etc/psa/.psa.shadow` -Dpsa Windows: Refer to this article:  #3472  [How To] How to access Parallels Plesk database Run the following query to find the DNS record preventing new domain creation (replace "example.tld." with the real name of the domain you are trying to create) Note:  Pay attention to the "." symbol at the end of domain name. Linux: ...

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>