Common Language Runtime (CLR)
The engine that executes all .NET programs
Common Intermediate Language (CIL)
The language used by the CLR
C# strings and escaped characters
Arrays
ArrayList
Delegates
Can be used as variables to point at methods that accept the same parameters
script runat = “server”
Sets the code to run on the web server, rather than in the user’s web browser
Generics
A class that supports any type of variables or objects
Try parse
if (IsPostBack == false)
Postback verifies that the page is being loaded for the first time. It is used in order to initialize content only on the first load
ListItem Class
HtmlSelect Class
Apply a CSS style to an HTML control
ControlName.Style[“AttributeName”] = “AttributeValue”
Server.HtmlEncode
Property allowing to display an HTML element as a text element
debug = true
Should be turned off when deployed to a server because it will slow down the application
Units
Color
Padding
padding: top right bottom left;
Create tables
HTML postback events
Web control events
Autopostback
_doPostBack
A Javascript function that is generated automatically when at least one control uses automatic postback. Sends the eventTarget and eventArgument to the server