Archive for 2009

Novell, geliştiriciler için Windows ortamında Linux için geliştirme yapabilecekleri bir eklentiyi (Mono Tools) duyurdu. ASP.NET, Windows Forms, Server ve Console uygulamalarını destekliyor. Bir Linux ortamına remote debugger ile bağlanıp debug bile yapılabiliyor. Bütün debugging imkanlarını kullanabiliyorsunuz (breakpoints, watches). Plug-in,  ağınızdaki Linux sistemlerini otomatik olarak buluyor yada siz hedef sistemin ip sini kendiniz girebiliyorsunuz. Native Linux […]

Eğer yukarıdaki hatayı alıyorsanız son çalıştığınız dosyayı / dosyaları notepad++ ta açıp format menüsünden “Encode in UTF-8 without BOM” seçerek kaydedin. Sonuca şaşırıp PHP yi bir kez daha seveceksiniz 😛

When writing SQL queries, especially the sp (stored procedure), temp table (temporary table) can create difficulties arise. At least you need to create delete the temporary table. The way to overcome this difficulty, such as the following to create a temporary table to use. DECLARE @TMP_TABLE_NAME( FIELD_ID INT IDENTITY(1, 1), FIELD_1 INT, FIELD_2 INT, FIELD_3 […]

SQL sorguları yazarken, özellikle sp (stored procedure), temp table (geçici tablo) oluştururken sıkıntılar çıkabiliyor. En azından oluşturduğunuz geçici tabloyu silmeniz gerekiyor. Bu sıkıntıları aşmanın yolu geçici tabloyu aşağıdaki gibi oluşturup kullanmaktır. DECLARE @TMP_TABLE_NAME( FIELD_ID INT IDENTITY(1, 1), FIELD_1 INT, FIELD_2 INT, FIELD_3 NVARCHAR(MAX) )

If you are curiese about which version of Team Foundation Server you are using, follow this steps: Open regedit Find this path: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\TeamFoundation\Registration You’ll see “Edition_CT” key.  If this key value is “Workgroup” your TFS version is Team Foundation Server Workgroup Edition. If this key value is “Full” your TFS version is Team Foundation Server […]

Sonunda Internet Explorer 8 güncelleme listesine düştü. Developer olarak Internet Explorer 7 de çektiğimiz sıkıntıları inşallah IE 8 de yaşamayız. Güncellemelerinizi yapmadıysanız bir an önce yapın  açık değilse de Windows Update sitesine gidin.

We most used Ajax requests the following snippet of code will make your life easier. Mootools “Request” function is used in this code. The next article in this function we’ll see how ASP.NET. Sensei = {}; Sensei.Send = function(URL, fName, prms, retryCount, OnComplete) { if (retryCount == null) retryCount = 0; var jsonRequest = new […]

Bolca kullanığımız AJAX requestleri (post) için aşağıdaki kod parçası hayatınızı kolaylaştıracaktır. Mootools “Request” fonksiyonu kullanılmaktadır. Daha sonraki yazılarda bu fonksiyonu ASP.NET ile nasıl kullanabileceğimizi göreceğiz. Sensei = {}; Sensei.Send = function(URL, fName, prms, retryCount, OnComplete) { if (retryCount == null) retryCount = 0; var jsonRequest = new Request( { ‘encoding’ : ‘utf-8’, method: ‘post’, url: […]

As you know, ‘select box’ is a special control and its style cannot be changed very much. For example the height property can be changed in Firefox, but it can’t be changed in IE. Instead of creating a formal select box, our aim is to create a virtual select box whose properties can be adjusted. […]

Bildiğiniz gibi select box özel bir kontroldür ve görünümü çok fazla değiştirilemez. Örneğin “heigth” özelliği firefox da değişmesine rağmen ie de değişmez. Amacımız select box ların yerine tüm görsel özellikleriyle oynayabileceğimiz, sadece html kodlarından oluştuğu için tüm browser larda aynı sonucu veren sanal select box oluşturmaktır. Öyle bir select box ki js yi ve css […]


top