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

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;

9 Cards in this Set

  • Front
  • Back

Describe control: Literal

Type: Web server control


Use: Used to place literal content dynamically. Content is not placed in an element, so styling is not supported.


Link: http://msdn.microsoft.com/en-us/library/sz4949ks(v=vs.90).aspx

Describe control: Label

Type: Web server control


Use: Typically used to add text dynamically. Adds text into a <span> element so it supports styling.


Link: http://msdn.microsoft.com/en-us/library/vstudio/bfhhhk72(v=vs.100).aspx

Describe control: Hyperlink

Type: Web server control


Use: Primary advantage is to create a hyperlink whose properties can be set in server side code. Think of a product image url; can bind to this value.


Link: http://msdn.microsoft.com/en-us/library/vstudio/seey0yt3(v=vs.100).aspx

Describe control: LinkButton

Type: Web server control


Use: Looks like a hyperlink control but has same functionality as a button control.


Link: http://www.w3schools.com/aspnet/control_linkbutton.asp

Describe control: Button

Type: Web server control


Use: Provides common button. Makes a postback call to the page. Triggers an event you can handle serverside.


Link: http://msdn.microsoft.com/en-us/library/t41dh257(v=vs.90).aspx

Describe control: Panel

Type: Web server control


Use: Used as a parent container for other dynamically created controls.


Link: http://msdn.microsoft.com/en-us/library/cd2zztdd(v=vs.90).aspx

Describe control: Placeholder

Type: Web server control


Use: Used to dynamically insert content to a page. Does not add markup of its own. I've noticed this seems to be used as a way of templating web pages.


Link: http://msdn.microsoft.com/en-us/library/vstudio/z05bh12b(v=vs.100).aspx

What is a web server control?


Web server controls are special elements that can by dynamically accessed by the server. These controls may or may not be mapped to actual HTML elements in the rendered page.




Link: http://www.w3schools.com/aspnet/aspnet_refwebcontrols.asp

What is the difference between web and HTML server controls?

Web controls provide a higher level of abstraction; ASP.NET automatically renders these into their browser-compatible HTML equivalents. HTML server controls have the same level of abstraction as their HTML element counterparts. (Need to hardcode browser-compatibility w/ HTML server controls)


Link: http://extremeexperts.com/net/faq/diffbetweenserverandhtmlcontrols.aspx