Created
August 25, 2015 05:51
-
-
Save mattkruskamp/1f8076c64c9722eebd7b to your computer and use it in GitHub Desktop.
Daily WTF Material
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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