Code for updating the database by entering the data into
textboxes in
aspx form?

Answers were Sorted based on User's Feedback



Code for updating the database by entering the data into textboxes in aspx form? ..

Answer / tejkrishna

textbox_textchange event
{
da.update();
}

Is This Answer Correct ?    12 Yes 9 No

Code for updating the database by entering the data into textboxes in aspx form? ..

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

Post New Answer

More ASP.NET Interview Questions

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?

0 Answers  


In Code-Behind class which kind of code (server or client) is found ?

0 Answers   Siebel,


About dataset and data mining ?

1 Answers   Cognizant,


Can you explain one critical mapping?

0 Answers  


how we Creating a Web Service

1 Answers   Mind Tree,


what is a virtual class?

1 Answers   Patni,


What are the advantages of asp.net?

0 Answers  


Is asp.net core faster?

0 Answers  


To which side ( server ? client) does the user input data validation occur? Explain the reasons for it?

1 Answers   Siebel,


What is a gridview in asp.net?

0 Answers  


What property is used on the datatable to indicate a conflict after an update? a) HasConflict b) HasError c) HasCollision d) HasDataError

1 Answers   Syntax Softtech,


Types of exceptions in dot net???

1 Answers   TCS,


Categories