Daily WTF Material

… Just had to post this before I deleted it… I’m not saying any names. This is what someone coded for one of the web pages in our project. This is the page code-behind

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Personal : System.Web.UI.Page
{
    private string securityQuestion;
    private string securityAnswer;

    protected void Page_Load(object sender, EventArgs e)
    {
    }

    public string SecurityAnswer
    {
        get { return txbSecurityAnswer.Text; }
        set { securityAnswer = value; }
    }
    public string SecurityQuestion
    {
        get { return txbSecurityQuestion.Text; }
        set { securityQuestion = value; }
    }
}