• 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/15

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;

15 Cards in this Set

  • Front
  • Back
Page Lifecycle (8)
(RSILVERU)
Request
Start
Init
Load
Validation
Event Handling
Rendering
Unload
Where to generate dynamic controls if there is a master page
Init Event
Where to generate dynamic controls if there is NO amster page
Pre-Init
What has happened during load
Page is initialized and state reconstructed
Application State
Global to the application and available to all pages for all users. HttpApplicationState
Session State
User specific state stoerd by user. By default, use cookies to track sessions
Global.asax
Global events file used to capture events such as session starting/ending, app starting/ending, etc
Session Storage Options (ISS)
1.) InProc - Session state in memory on web server
2.) StateServe - Stores state in ASP.Net State Service. Persists data through restarts and over multiple servers
3.) SQLServer - Stores state in database
4.) Custom - Can write own
5.) Off, turns off
How do you turn off formatting of controls in a table
RenderOuterTable
How do you change what version of ASP.NET is used for rendering
controlRenderingCOmpatibilityVersion in web.config
What does HTMLEncode Do
Prevents code from running (either javascript or html) and just renders it as text
Literal Control
Used for adding raw HTML

Does not render HTML elements

Need to add text dynamically but dont want to use label

Use when not labeling textbox / user input controls
3 Literal Render Types
Pass Through - Runs scripts as respective type

Transform - Runs scripts renders html

Encode - Shows text, doesn't render html or run scripts
Checkbox checked event
Doesn't cause postback but will be fired if another event calls postback. can change to auto
Button - BUtton Command
Can give different buttons same button command and bind to Button_Command, allows one function to handle multiple things