Question { 4798 }
web user and custom conrols
Answer
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain the functionality of "EnableViewState" ? What
happens if you want it on or off?
Answer
| Is This Answer Correct ? | 6 Yes | 1 No |
For Web services where you can browse on the Internet?
Answer
| Is This Answer Correct ? | 1 Yes | 0 No |
Question { Syntax Softtech, 6651 }
What does the "EnableViewState" property do? Why would I
want it on or off?
Answer
| Is This Answer Correct ? | 5 Yes | 1 No |
Question { Syntax Softtech, 34004 }
What is the difference between Server.Transfer and
Response.Redirect? Why would you choose one over the other?
Answer
| Is This Answer Correct ? | 17 Yes | 4 No |
Question { Syntax Softtech, 17627 }
Describe and In Process Vs Out of Process component. Which
is faster?
Answer
| Is This Answer Correct ? | 24 Yes | 0 No |
Question { Syntax Softtech, 5978 }
What definition correctly defines a label server control
with the name set to lblHoop?
a)
b)
c)
d)
Answer
| Is This Answer Correct ? | 0 Yes | 2 No |
Question { Syntax Softtech, 5232 }
What is the name of the process the browser uses to find the
address of a web server?
a) DMZ
b) DNS
c) Active Directory
d) Database lookup
Answer
| Is This Answer Correct ? | 0 Yes | 0 No |
Question { Syntax Softtech, 7390 }
What is the purpose of the following segment?
If ( !IsPostBack)
{
sqldataAdapter1.Fill (dsusers1);
DataGrid1.DataBind ();
}
a) To populate the DataAdapter the first time the web page
id displayed.
b) To populate the DataSet every time the web page is displayed.
c) To populate the DataAdapter every time the web page is
displayed.
d)To populate the DataSet the first time the web page is
displayed.
Answer
| Is This Answer Correct ? | 7 Yes | 2 No |
Question { Syntax Softtech, 7116 }
When working with ASP.Net server controls, it is important
to use the right event handlers to capture the event for the
application to function properly. What event would you use
to capture the selection of a new item in a DropDownList
control?
a) The Click event.
b) The SelectionChanged event.
c) The SelectionIndexChanged event.
d) The ChangedSelection event.
Answer
| Is This Answer Correct ? | 4 Yes | 0 No |