Este año va a ser aun mas grande que el año pasado. Tenemos 12 charlas en paralelo en 4 horarios diferentes. Más de 50 oradores del todo el país compuesto por MVPs, MSPs, empleados de Microsoft, profesionales y estudiantes. Algunos de los temas son Windows y SQL Admin, ASP.NET, .NET 4.0, WPF, Silverlight, XNA, y mucho mas. El evento es el Sábado, 26 de Septiembre a de 10:00 a 19:00 en la Universidad de Palermo. Te lo vas a perder? http://www.codecamp.com.ar/home.aspx
Yesterday I introduced a free service to get the location of the IP Address. If you haven’t read it, go on read that first (it’s very short, I promise). So here I am today, showing you my small .NET API to abstract the XML returned by the service. First we need an object to hold the data. I called it UserLocation. 1: public class UserLocation
2: {
3: public string City...
I wanted to share with all of you a free service that provides you an approximation of your user’s IP Address. You can read about it here: http://www.hostip.info/use.html. If you are looking for a more sophisticated solution that is maintained more often than the free solution you can also use this service: http://www.maxmind.com As of this writing you can get the response in 2 different forms: XML or plain text. I like the more structure formats so I will be using the XML option. Stay tune… I will post a C# API for retrieving the information. UPDATE:...