When would you set a control's AutoPostBack property to true?



When would you set a control's AutoPostBack property to true? ..

Answer / raghumadhav tirunagari

AutoPostBack is available with Web controls that are capable
of posting back to the server whenever the user performs an
action on the control. For example, if a drop down list
control's autoPostBack property is set to true (false is the
default), selecting an item from the drop down list will
cause the form to be submitted to the server. Autopostback
requires a round trip to the server every time the event is
fired.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

Webconfig file is cofiguration of server or browser?

10 Answers   Wipro,


Is string a value type or a reference type?

13 Answers  


what is stateless ?

2 Answers   TCS,


Below is a code extract from an ASP.Net application. The code basically reads data from the “name” field in the “members” table and prints them onto the webpage. Using the assumptions provided, fill in the 4 blanks below so that the code will run correctly. ‘Assumptions: ‘conn_str is a variable that holds the connection string to the database ‘Objects dbcomm and dbread are already declared earlier dbcomm = New OleDbCommand("SELECT name FROM members", conn_str) dbread = dbcomm._______________ _____________________ response.write(_______________) _____________________ dbread.Close()

4 Answers   Techno Solutions,


What is the function of the CustomValidator? a) It allows for custom C# client-side code to validate entries in a control. b) It allows for a custom mixture of validator controls to use one central control for the display of messages. c) It uses scripted client-side code to validate the entry in a control. d) It uses server-side code to validate the entry in a control.

4 Answers   ABC, Syntax Softtech, TCS,






Differentiate globalization and localization.

0 Answers  


Can the unique key be null?

0 Answers  


Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?

0 Answers   MCN Solutions,


What methods are fired during the page load? Init()

0 Answers  


What is http pipeline in asp.net?

0 Answers  


Which data type does the rangevalidator control support?

0 Answers  


If I update session state, should I lock it, too? Are concurrent accesses by multiple requests executing on multiple threads a concern with session state?

1 Answers  


Categories