Coded – Web Development and Programming Blog

C#, ASP.NET, Google, Remoting, AJAX, Silverlight, Web Development

How to auto zoom and auto center Google Maps

Posted in User Interface, Web Programming by Andrei Alecu on the September 28th, 2007

This post discusses how to auto center and auto zoom a Google Map to display all of the markers optimally.

In order to get accomplish this, you have to calculate the center point and zoom level manually via code. Fortunately this is pretty easy to do, you just need to calculate the minimum and maximum latitude/longitude of all of your markers and then get the center point of the resulting area (which will be a rectangle). (more…)

Bookmark on del.icio.us

Owner-drawing a Windows.Forms TextBox

Posted in .NET Framework, C#, SharpSpell, User Interface by Andrei Alecu on the September 17th, 2007

This article describes how SharpSpell is able to modify existing TextBox controls to display wavy red underlines below misspelled words.

Here’s an image to demonstrate what I mean:

SharpSpell - ASP.NET spell checker
(This image is borrowed from SharpSpell, but you get the point) (more…)

Bookmark on del.icio.us

Calling a Windows Service from ASP.NET via Remoting & IpcChannel

Posted in .NET Framework, ASP.NET, C# by Andrei Alecu on the September 1st, 2007

I recently had to design a Windows Service that connects to several game servers via UDP, gathers stats, and then updates a MSSQL database.

These stats were then made available in real-time on a web-site written in C# and ASP.NET.

Before Remoting

For the first version of the application, the web-site and Windows Service were completely independent. The web-site would just query the database and determine, or make a best guess about what was going on inside the Windows Service at that exact time. This worked pretty good, and although the database is now about 1GB in size and growing fast, I optimized it good enough for this to work in real-time without a hitch.

There was some caching going on, thanks to the OutputCache directive in ASP.NET, but surprisingly enough there were no performance issues.

After Remoting

All right, so because I needed to display some extra information about ‘online’ users, that the Windows Service knew about, but the database didn’t, I decided to have a look at .NET Remoting. This was my first time working with it.

These were the issues I experienced (as a Remoting newbie) when rewriting the Windows Service to be accessible via .NET Remoting: (more…)

Bookmark on del.icio.us