How to Login via Facebook in ASP.NET

Aug 10, 10 How to Login via Facebook in ASP.NET

Posted by in General IT, Programming

Recently I have encountered some nasty problems trying to build a Facebook login system. That’s why I am going to explain a full tutorial about every aspect you need to know about it. 1. Register your application Go to http://developers.facebook.com/setup/ and enter the site name(it could be any) and the site URL(if...

read more

Text Reflection effect with WPF and XAML

Jun 30, 10 Text Reflection effect with WPF and XAML

Posted by in Programming

I bet everyone has seen, especially with the advent of Web 2.0, different sorts of text pieces that have a reflection beneath them which gives the impression the text is “sitting” on a surface.Although the effect is very easy to do in Photoshop, I decided to show you that it can be as easy and enjoyable in...

read more

Getting the Content-Encoding header in C#

Jun 09, 10 Getting the Content-Encoding header in C#

Posted by in Programming

Recently I needed to get the Content-Encoding header within a C# application.After trying to figure out why the response was empty, and after reading different community posts where other users had the same problem and none of the suggestions seem to solve it, I’ve decided to post my solution for further use. Let’s take...

read more

Autocomplete Combo Box in C# with SQL values

May 27, 10 Autocomplete Combo Box in C# with SQL values

Posted by in Programming

In the following article I’m going to show you how to make an autocompleting Combo Box in C#, that uses a SQL database as its custom source of values.First, I’m going to display the whole implementation and afterwards explain the code in detail. Database Structure Table name: keywordsList Column Name Data...

read more

Rotating a line in C#

May 26, 10 Rotating a line in C#

Posted by in Algorithmics, Programming

Recently I had a problem that required me to do a rotation of a line keeping the original point fixed. A rotation is a movement of an object in a circular motion, mathematically a rotation is a rigid body movement which, unlike a translation, keeps a point fixed. public partial class Rotate : Form { public Bitmap...

read more