Click here to Skip to main content
15,886,919 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
protected void btnsave_Click(object sender, System.EventArgs e)
{
assignvalues();
x = s.insert("inserttblstudent");
if (x > 0)
{
Response.Write("Successfully Saved");
txtstid.Text = s.Autostid;

}
else
{
Response.Write("Not Saved");
}
}

What I have tried:

protected void btnsave_Click(object sender, System.EventArgs e)
{
assignvalues();
x = s.insert("inserttblstudent");
if (x > 0)
{
Response.Write("Successfully Saved");
txtstid.Text = s.Autostid;

}
else
{
Response.Write("Not Saved");
}
}
asp.net in c#
Posted
Updated 28-Dec-17 8:16am

1 solution

I have no idea what s is; however, the compiler thinks you meant to call s.Autostid() as a method since it is not a valid string property.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900