Skip to content

Instantly share code, notes, and snippets.

@mattkruskamp
Created August 25, 2015 05:51
Show Gist options
  • Save mattkruskamp/1f8076c64c9722eebd7b to your computer and use it in GitHub Desktop.
Save mattkruskamp/1f8076c64c9722eebd7b to your computer and use it in GitHub Desktop.
Daily WTF Material
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; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment