PDA

Click to See Complete Forum and Search --> : [RESOLVED] error assigning value


VBKNIGHT
Apr 28th, 2006, 03:00 AM
I'm new to C# please help..got error assigning textbox value on my variable usr.


using System;
using System.Data;
using System.Configuration;
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 _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack) {
string usr = username.Text.ToString; -> error on this line
if (usr == "test")
{
Response.Redirect("userform.aspx");
}
else
{ custerrormsg.Text = "Invalid username or password"; }
}else{

}


}
}


TIA

Sgt-Peppa
Apr 28th, 2006, 03:13 AM
ToString();

jmcilhinney
Apr 28th, 2006, 03:22 AM
You've come from VB or VB.NET, right? C# requires parentheses on all methods, as Sgt-Peppa has indicated. Only properties can be called without parentheses.

VBKNIGHT
Apr 28th, 2006, 03:41 AM
oh i see...thanks for the info