Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
string x;
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:

string x;
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 0:40am

1 solution

Try this:
txtstid.Text = s.Autostid.ToString();
 
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