6
Answers

insert a value in a table with where condition


hai,
    how to insert a value in a table with where condition in sql server 200.
insert
into replies values title='network' where user1="bala"
i use this condition but the error occurs how to solve this
Answers (6)
1
Frogleg
NA 7.9k 33k 14y

string uName,pWord;// declare strings
//set default
uName = ("Email/Username");
pWord=("Password")
Client Credentials = new NetworkCredential(uName,pWord);
//and to change
uName =textBox1.Text;
pWord =textBox2.Text;
Client Credentials = new NetworkCredential(uName,pWord);
Accepted