TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
narasiman man
NA
0
117.9k
While insert Record it will display message recordalready exists Visual studio 2005 with SQL Server
Dec 24 2011 10:44 AM
While insert same Record it will display message recordalready exists Visual studio 2005 with SQL Server
textbox1 = Projectcode
textbox2 = Projectname
textbox3 = ProjectDesc
textbox4 = Cost
my code:
protected void Button1_Click(object sender, EventArgs e)
{
con.Open();
str = "insert into Project values('"+TextBox1.Text+"','" + TextBox2.Text + "','" + TextBox3.Text + "'," + TextBox4.Text + ")";
cmd = new SqlCommand(str, con);
cmd.ExecuteNonQuery();
Response.Write("Record inserted Successfully");
con.Close();
}
Reply
Answers (
3
)
Code to hide
Check if email address really exsist or not using c#