Ex Course

ASP.NET is an object-oriented server-side Web application framework designed to build web applications on Windows systems, to produce dinamic web pages.

ASP.NET Courses - E-books

  1. Beginning ASP.NET 4.5 in C# and VB (2012 - PDF Source code - 43.2 MB)
    • - This book is for anyone who wants to learn how to build rich and interactive websites that run on the Microsoft platform.
      It is filled with helpful examples and contains a user-friendly, step-by-step format. This book walks you through ASP.NET, Microsoft's technology for building dynamically generated web pages.
  2. Professional ASP.NET 4.5 in C# and VB (2013 - PDF Source code - 67.6 MB)
    • - This book was written to introduce you to the features and capabilities that ASP.NET 4.5 offers, assuming you have a general understanding of web technologies, such as HTML, CSS, or previous versions of ASP.NET. Introduces new topics, and shows you examples of these new technologies in action.
  3. Pro ASP.NET 4.5 in C# (2013 - PDF Source code - 46.8 MB)
    • - A complete reference to ASP.NET, this book teachs you everything you need to know in order to create well-designed ASP.NET websites. Beginning with core concepts the book progresses steadily through key professional skills. You'll be shown how to query databases in detail, consider the myriad applications of XML, and advanced topics such as using client-side validation, jQuery and Ajax.

Video courses and tutorials

  1. ASP.NET 4 AJAX and jQuery Using Visual C# (ASP4JQ 1 - ASP4JQ 2 - ASP4JQ 3)
    • - The course starts out with an exploration of the fundamentals of AJAX. Then continues with interesting features in JavaScript that will help you write code that runs in the browser. Next up is an introduction to server-side controls that you can use in a Web forms page to reduce the amount of data that has to move between client and server. Then you’ll explore some of the techniques you can use to create applications that give users a good experience with your Web application.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes a radio button or checkbox input selected?
checked="checked" selected="selected" disabled="disabled"
<input type="checkbox" name="a_name" value="value" checked="checked" />
What CSS value scales the background image to the largest size contained within the element?
repeat-x contain linear-gradient
#id {
  background:url("path_to_image.png");
  background-size:contain;
  background-repeat:no-repeat;
}
What operator is used to determine the rest of the division of two numbers?
% * /
var rest8_7 = 8 % 7;
alert(rest8_7);
Indicate the PHP function that rounds a number up to the next highest integer.
floor() ceil() abs()
$nr = ceil(3.5);
echo $nr;        // 4
ASP.NET Courses

Last accessed pages

  1. Validate radio and checkbox buttons (10065)
  2. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (141332)
  3. The School for Gods (6073)
  4. sPBM - Simple PHP Backup Manager (3390)
  5. querySelector and querySelectorAll (30115)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (56)
  2. The Mastery of Love (9)
  3. CSS cursor property - Custom Cursors (9)
  4. CSS3 2D transforms (7)
  5. Read Excel file data in PHP - PhpExcelReader (7)