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
- 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.
- 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.
- 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
- 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
Which tag is used to add lists into <ul> and <ol> elements?
<dt> <dd> <li><ul>
<li>http://coursesweb.net/html/</li>
<li>http://coursesweb.net/css/</li>
</ul>
Which value of the "display" property creates a block box for the content and ads a bullet marker?
block list-item inline-block.some_class {
display: list-item;
}
Which instruction converts a JavaScript object into a JSON string.
JSON.parse() JSON.stringify eval()var obj = {
"courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr); // {"courses":["php","javascript","ajax"]}
Indicate the PHP class used to work with HTML and XML content in PHP.
stdClass PDO DOMDocument$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue; // CoursesWeb.net