24 Mayıs 2010 Pazartesi

Select random rows from a MS-SQL Server table

SELECT TOP 1 *
FROM TABLE_NAME
ORDER BY NEWID()

11 Mayıs 2010 Salı

The process cannot access the file because it is being used by another process

If you are getting this error while you want to delete attachment of a mail you must dispose that mail.

mail.Dispose();

will works fine!

10 Mayıs 2010 Pazartesi

Make someone follow you on Twitter


It simple twitter has a bug
go to http://twitter.com/ and login



then tweet "accept [username]" [username] that you typed will follow you! :)))

#Fail

http://hasanbasusta.com/sosyal-medya/dalai-lamanin-takip-ettigi-tek-insan-korhan-kurt.html

9 Mayıs 2010 Pazar

Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same

if you have;

"Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster."
Error Add ;

pages enableViewStateMac="false" in system.web in web.config

3 Mayıs 2010 Pazartesi

How to delete a folder which has files? in C#

Directory.Delete(directoryname, true)