• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/11

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

11 Cards in this Set

  • Front
  • Back
What are the three sections of a Web Form
1) Page Directives
2) Code Declaration Block
3) Code Render Block
Page Directives
- Set page properties
- Import additional classes
Code Declaration Block
<script runat=“server”>
//Server-side code here…
</script>
Code Render Block
- Contains HTML, text, Web Server Controls
- Typically below code declaration
Order of Execution
.NET is event driven
Events in .NET
- Page Load
- Text Changed
- Button Click
- Checkbox checked
ViewState
- Saves control data (hidden form field)
Advantage of ViewState
Convenient
Disadvantage of ViewState
- Processing overhead
- Bandwidth
Turn off ViewState
EnableViewState=“false”
.NET Framework
- Like a huge lego set
- 5,000+ pieces
- Support for many languages and platforms