| Can you edit data in the Repeater control? |
| No, It just reads and display the information from its data source. |
|
|
|
|
|
| Which template you must provide in order to display data in the Repeater control? |
| ItemTemplate. |
|
|
|
|
|
| How can you provide an alternating color scheme in a Repeater control? |
| For this you can use AlternatingItemTemplate. |
|
|
|
|
|
| From which base class do the all Web forms inherit? |
| Page class |
|
|
|
|
|
| How many classes a single .Net DLL can contain? |
| A single .Net DLL can contain as many classes as you want. |
|
|
|
|
|
| What does IsPostBack Property of the Web Form? |
| IsPostBack property of the page allows to check whether the page is being loaded for the first time. False value means first time. True means result of round trip. |
|
|
|
|
|
| What is the Code Behind feature of ASP.Net? |
| Code Behind feature of ASP.Net devides the ASP.Net page file into two files: 1. One contains presentation logic (.aspx file). 2. Code Behind file contains all applcation logic (.aspx.cs or .aspx.vb) |
|
|
|
|
|