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 application session?
What is OSI layer? Explain different layers.
How does viewstate work?
What is _dopostback in asp net?
How much is the pay-for-use service if I chose not to use microsoft-sponsored advertising?
Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc
Explain different types of validators in asp.net?
Why is global asax is used for?
What is Dynamic Web and discuss its usage with the help of real life examples?
Define xmlreader class.
How can you pass multiple complex types in Web API?
How can you access the properties and controls of master pages from content pages?
What is different authentication mechanisms used in ASP.NET?
What is asp.net ajax?
Just by seeing the signature of the bean how can you specify whether it is a stateful or stateless session bean?