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
What is page fragment caching?
A web service can only be written in .net? State whether true or false.
IN an ASP.NET Web application if there is any error, how can you debug?
What symbol specifies the beginning of a query string?
Explain the different parts that constitute ASP.NET application?
What are the main requirements for caching?
How is my content secured from unauthorized access?
How do you deploy your asp.net application?
Explain diff. Betn dataset and recordset?
What is Difference between Production Serves and Development Servers? And Suppose, m adding/deleting C# file in a project based on the Specific Requirement. These Files are Automatically updated in Production Servers? So Which tool is needed to do This One?
Which is better asp.net or php?
What is the use of session?
what is a .xap file? Explain with an example.
Why do we need url encoding?
What is boxing and unboxing in asp.net?