Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 ASP.Net Interview Questions and Answers
What is difference between ExecuteReader, ExecuteNonQuery and ExecuteScalar?
  • ExecuteReader : Use for accessing data. It provides a forward-only, read-only, connected recordset.
  • ExecuteNonQuery : Use for data manipulation, such as Insert, Update, Delete.
  • ExecuteScalar : Use for retriving 1 row 1 col. value., i.e. Single value. eg: for retriving aggregate function. It is faster than other ways of retriving a single value from DB.
What is SingleCall activation mode used for?
How to disable the back button of the browser in ASP.Net?
What is the Caching in ASP.Net?
Explain the System.ComponentModel namespace in .Net Framework Class Library.
What is "DetailsView" Control in ASP.Net?
How to prevent a Button from validating its form?
What is the Connection Object in ADO.Net?
How can we check if all the validation control are valid and proper?
Why is ADO.Net serialization slower than ADO?
What are the components of CLR in ASP.Net?