9 Şubat 2011 Çarşamba

How to go back to the previous page in ASP.NET

Response.Redirect(Request.UrlReferrer.ToString());

3 Şubat 2011 Perşembe

00:00 Format Hour Regular Expression Code

Simply the code is
([01]?[0-9]|2[0-3]):[0-5][0-9]

1 Şubat 2011 Salı

Fullscreen Remote Desktop

If you want to fullscreen your Remote Desktop,
press ctrl+alt+break keys. It will be Fullscreen

4 Kasım 2010 Perşembe

Cakephp : "Undefined variable: javascript". How to add javascript helper to default layout?

Create a file named "app_controller.php" under the app/ directory.

In it paste the following code.

class AppController extends Controller{
var $helpers = array('Html','Javascript');
}

The Javascript in your default.ctp layout file should load fine.
Thanks!

28 Eylül 2010 Salı

Press tab to search Mysite (Chrome)



Merhabalar,

Herkes bunun nasıl yapıldığını ve Chrome' un bunu hangi siteler için otomatik algıladığını merak ediyor. Aslında yapılması gereken iş çok basit ve 2 snlik ama nette aradığınızda karşınıza saçma sapan şeyler çıkabiliyor. Fazlasıyla uzattım sanırım yapılması gerekenler aşağıda;

1. Adım / 1.st Step

Anasayfaya aşağıdaki code' u ekliyoruz. / Add the following code to your homepage



2. Adım / 2.nd Step

En üst resimdeki xml' i oluşturup ilk adımdaki pathe kaydedin.

Create the xml on the top image and save it to given path in step one.



Örnek olarak; http://thepiratebay.org/ adresine bakabilirsiniz.



Details -> Open Search

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!