December 23rd, 2008 — 1:12pm
Appcode folder is a folder that we can put our cs files (classes) in. For small projects you can use this folder to store your classes but if you put too many classes in that folder your building time increases
to improve the build time you should use class libraries.
(there are absolutely better reasons to use class libraries :) this is just one)
In object oriented principles every thing depends on classes. So we have to use many classes. It is good for maintenance but slow downs the performance.
Our systems should take care both of it.
Comment » | Csharp - C#
December 17th, 2008 — 5:33pm
you can get table names from sql server with a simple query
–table names
SELECT * FROM sys.objects WHERE type = ‘U’
–column names
SELECT * FROM sys.columns
WHERE OBJECT_NAME(sys.columns.OBJECT_ID) = ‘tblTableName’
2 comments » | Sql
December 16th, 2008 — 11:24pm
Sitenize eğer bir resim ekliyorsanız ve o resim arama sonuçları için size katkı da sağlasın istiyorsanız.
img tagına alt attribute’ünü mutlaka verin.
bu tag mouse ile resmin üzerine gelindiğinde de gözükür. Bazı browserlar da mouse over da alt yerine title da yazanı gösterirler.
browserlarda mouse over da bi güzellik olsun diye hem alt hem title kullanabiliriz
ama google hem title da hem alt da aynı şey var diye kızabilir diyorlar. kendi bloglarında da sadece alt attribute kulanımı göstermiş. 7-8 kelimeyi aşmayan bir açıklama istiyorlar.
mesela kalem kelimesine oynuyor olalım. şu şekilde tanımlamaları bir resmimizin olması daha iyi olacaktır.
src=”kalem.png”
alt=”kalem dediğin kalem gibi olmalı”
ayrıca şu videoyu da izlemelisiniz
google için alt attribute kullanımı
Comment » | Something