Code for updating the database by entering the data into
textboxes in
aspx form?
Answer Posted / manish acharya
Connection con = GetConnection();
String query = update <table> set <column> = 'txtUpdate1.Text';
int i=con.updatequery(query);
if(i!=0)
{
Response.Write("Updation Successful");
}
con.close();
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many validators do ASP.NET have?
How do you handle server controls?
Can you change a Master Page dynamically at runtime?
How can I have a particular web page in an asp.net application which displays its own error page?
What are the features that make asp.net more used framework? : asp.net mvc
What is __ requestverificationtoken?
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
What is meant by ispostback in asp net?
How can I configure asp.net applications that are running on a remote machine?
How can you send an email message from an asp.net web page?
What are the new features added from ASP to ASP.NET?
What is s2s tracking?
Is data edited in the Repeater control?
How does session state work in asp.net?
What are the new data controls in asp.net 2.0?