avatar

Andres Jaimes

Google+

El día de hoy obtuve una de las codiciadas cuentas en Google+. A primera vista pareciera que estamos tratando con una copia de FaceBook, pues tiene cosas como los mensajes de estado y las fotografías… pero esconde muchas otras más.

No more spam…

Ok spammers, I’m tired.

During the last weeks  I was getting about 100 spam messages per hour. That was very difficult to control. So I decided to take that as an opportunity to upgrade my server. Now my website runs on the latest WordPress engine …

ASP.NET Tips & Tricks

How to get the user name in a web app

Four steps to achieve it:

  1. Use the following code to get the user name in your application:
string user = User.Identity.Name.ToString();
  1. Modify your web.config file to include the identity and the …

asp.net tips and tricks

How to get the username in a web app

Four steps to achieve it:

  1. Use the following code to get the username in your application:
string user = User.Identity.Name.ToString();
  1. Modify your web.config file to include the identity and the authentication …