You can query your database with modern query language LINQ. I think SQL Server Management Studio need this functionalty built-in. Tool is free for now. Yo can download from this link: http://www.linqpad.net/
Cross Site Scription (XSS)
Infact Web applications are HTML forms and lives at the client side. This HTML forms make visits to their parents who lives at the server side. While they are visiting their parents they bring a lot of data input from client side. While they are leaving for home takes a lot of output data. If […]
Grab color from your desktop with ColorPic
If you are web designer or developing web applications you can use this application to grab colors from screen. It’s easy to use and %100 free application. It’s very easy to use it. Move your mouse pointer over the color that you want to grab. Then use Ctrl+G shortcut. This action stores the color to […]
Register your user controls and custom controls in Web.Config
In ASP.NET web application you can develop user controls and custom server controls to increase your productivity and decrease code repetition. To use these user controls at your web pages you can register like this: <%@ Register Src="Controls/somecontrol.ascx" TagName="SomeControl" TagPrefix="myPrefix" %> And use like this: <html> <body> <form id="form1" runat="server"> <myPrefix:header ID="SomeControl1" runat="server" /> </form> </body> </html> The registration step can […]
Changing your hosts file in Windows
In Windows, Hosts file is a read only hidden system file. So that you cannot edit that file. Also running notepad as an administrator doesn’t solve this problem.There are a lot of articles about this topic but none of them giving this solution. You can solve this by typing some DOS commands at command line: […]
ASP.NET MVC 1.0 RC (Release Candidate)
Milliyet gazetesi Internet yazılım hizmetlerinde çalışmaya başladığımda arabam.com web sitesinin mevcut veritabanı ve sınıf kütüphanesi kullanılarak yeniden yazılamsı isteniyordu… .NET 1.1 de geliştirilmiş olan mevcut uygulamayı yeni teknolojilerle yazalım istedik… Visual Studio 2008 + .Net Framework 3.5 + MVC Framework Preview ile geliştirme yapma kararı alındı… Özellikle preview durumda olan bir framework kullanmak oldukça çılgın […]