Code for updating the database by entering the data into
textboxes in
aspx form?
Answers were Sorted based on User's Feedback
Answer / 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 |
How will you do windows authentication and what is the namespace? If a user is logged under integrated windows authentication mode, but he is still not able to logon, what might be the possible cause for this? In ASP.Net application how do you find the name of the logged in person under windows authentication?
In Code-Behind class which kind of code (server or client) is found ?
About dataset and data mining ?
Can you explain one critical mapping?
how we Creating a Web Service
what is a virtual class?
What are the advantages of asp.net?
Is asp.net core faster?
To which side ( server ? client) does the user input data validation occur? Explain the reasons for it?
What is a gridview in asp.net?
What property is used on the datatable to indicate a conflict after an update? a) HasConflict b) HasError c) HasCollision d) HasDataError
Types of exceptions in dot net???