Alıntıdır.
C#, .NET, .Net Core
ASP.NET MVC, ASP.NET Web Forms, ASP.NET Core
HTML 5, CSS 3, Javascript, jQuery, Bootstrap
Entity Framework, NHibernate, Dapper
Sql Server, MySql, Oracle
Windows Server, Ubuntu, Debian, Pardus
Xamarin Forms, Android Studio
--- The future of the open web platform is looking very bright!
--- .NET is a free, cross-platform, open source developer platform for building any app.
Google Analytics İzleme
27 Ekim 2011
İşadamına iki strateji; büyük resmi gör, paydaşları düşün!
Alıntıdır.
Log4Net kullanımı - multi process için log dosyasına aynı anda erişimi sağlama
Kaynak:
http://logging.apache.org/log4net/release/sdk/log4net.Appender.RollingFileAppenderMembers.html
http://logging.apache.org/log4net/release/config-examples.html
26 Ekim 2011
jquery ile ajax istek başlangıcında tüm sayfayı bloklayıp, lütfen bekleyin yazısı gösterme
$(document).ajaxStart($.blockUI).ajaxStop($.unblockUI);
IIS Express'i aktif etme ve Windows Authentication'ı ayarlama
IIS Express'de windows oturum kontrolünü aktif etmek için Solution Explerer'da proje dosyasını seçin, sonra Properties penceresini aktif edin. Ayarları aşağıdaki gibi yapın ve çalıştırın.
20 Ekim 2011
asp.net mvc 3 - /Content/Site.css dosyasının görüntülenememe problemi
<configuration>
...
<location path="Content">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
...
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
.....
</configuration>
14 Ekim 2011
You do not have sufficient privileges to delete {OU Name} hatası
Ou silerken aşağıdakine benzer bir uyarı alıyorsanız aşağıdakileri işlemleri uygularak sonuca ulaşabilirsiniz.
Error
“You do not have sufficient privileges to delete {OU Name}, or this object is protected from accidental deletion”
1- Administrator hesabi ile oturum açınız
2- Start > Run > dsa.msc ( Enter )
3. View > Advanced Features
4. Right Click the OU > Properties > Object Tab.
5. Un-tick “Protect this object from accidental deletion”.
işlemlerini uyguladıktan sonra organizal unitleri silebilirsiniz.
11 Ekim 2011
jquery dokümanları
Kaynaklar:
http://ersingenel.com/blog/3/8-mukemmel-jquery-ipucu.htm
Asp.Net Jquery Time Ago
Uzun süre çalışan işlemleri asp.net ile kodlamak
09 Ekim 2011
text, ntext ve image desteği kalkıyormuş, ilginç
07 Ekim 2011
microsoft outlook başlatılamıyor. outlook penceresi açılamıyor hatası
Bu sorunu gidermek için aşağıdaki adımları kullanın.
- Başlat menüsünde Çalıştır'ı tıklatın.
- Çalıştır iletişim kutusuna aşağıdaki komutu yazın:
Outlook.exe /resetnavpane
Not: "Outlook.exe" ile "/resetnavpane"
arasında bir boşluk vardır - Tamam'ı tıklatın.
04 Ekim 2011
03 Ekim 2011
ASP.Net ile PowerShell Scripti Çalıştırma
Makinenizde kurulu powershell sürümünü öğrenme:
http://stackoverflow.com/questions/1825585/determine-what-version-of-powershell-is-installed
Adım adım örnek:
Using PowerShell 2.0 from ASP.NET Part 1
http://stackoverflow.com/questions/1169891/how-do-i-get-the-localhost-name-in-powershell
Running Remote Powershell scripts from VB.NET
Exchange sunucuya bağlanıp, powershell scripti çalıştırma:
HOW TO: Migrating Exchange 2007 PowerShell Managed code to work with Exchange 2010
Calling Exchange Management Shell Cmdlets from Managed Code
http://msdn.microsoft.com/en-us/library/ff326159(v=exchg.140).aspx
How to Execute Remote PowerShell Commands using C#
Live@Edu Exchange sunucuya powershell ile bağlanma ve şifre resetleme:
Connect Windows PowerShell to the Service
http://help.outlook.com/en-us/140/cc952755.aspx
Reset a Live@edu User's Password with Windows PowerShell
http://help.outlook.com/en-us/140/dd253225.aspx
Windows Server 2008 R2'de .net ile yazılan powershell çalıştırma esnasında oluşan hata:
... cannot be loaded because the execution of scripts is disabled on this system ... hatası verdiyse;
Bu hata için Set-ExecutionPolicy Unrestricted komutu önce çalıştırılmalıdır.
Kaynak:
http://www.anilerduran.com/index.php/2008/file-cannot-be-loaded-because-the-execution-of-scripts-is-disabled-on-this-system-error-in-powershell/
http://www.sertac.gen.tr/exchange-management-console-ailmiyor/
http://technet.microsoft.com/en-us/library/ee176949.aspx
Dikkat:
Visual Studio'da C# managed .net kod ile Poweshell işlemleri yapabilmek için gerekli olan System.Management.Automation.dll dosyasını Windows 7 64 bitlik makinede
C:\Program Files (x86)\Reference Assemblies\Microsoft\WindowsPowerShell\v1.0\System.Management.Automation.dll adresinde ki dll dosyasını projeye referans olarak eklenmelidir, derleme veya publish sonucunda bu dll'i bin klasörüne atmak için dll dosyasının özellik penceresinden Copy Local değeri True yapılmalıdır. Bu şekilde derlenmiş wcf servisi web uygulamasını Windows Server 2008 R2 Enterprise 64 bit'lik sunucudaki iis'de çalışmaktadır. Test ettim, çalışıyor.