infected
November 10th, 2005, 05:49 PM
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Button submit;
protected System.Web.UI.WebControls.TextBox password;
protected System.Web.UI.WebControls.Label Output;
protected System.Web.UI.WebControls.TextBox clientID;
private Cryptography crypto;
private void Page_Load(object sender, System.EventArgs e)
{
if (Page.IsPostBack)
{
crypto = new Cryptography();
// Output.Text = crypto.Decrypt("89W8Z2RgNQnf1DEZd9wWNw==");
}
}
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
CryptoSoft.Cryptography..ctor() +279
ClientLogin.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\clientlogin\clientlogin.aspx.cs:40
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
i am a newbee, i have no idea how to solve this. any adivce is appreciated.
{
protected System.Web.UI.WebControls.Button submit;
protected System.Web.UI.WebControls.TextBox password;
protected System.Web.UI.WebControls.Label Output;
protected System.Web.UI.WebControls.TextBox clientID;
private Cryptography crypto;
private void Page_Load(object sender, System.EventArgs e)
{
if (Page.IsPostBack)
{
crypto = new Cryptography();
// Output.Text = crypto.Decrypt("89W8Z2RgNQnf1DEZd9wWNw==");
}
}
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
CryptoSoft.Cryptography..ctor() +279
ClientLogin.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\clientlogin\clientlogin.aspx.cs:40
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
i am a newbee, i have no idea how to solve this. any adivce is appreciated.