var fDesc=new Array(); fDesc[1] = "developing and using PHP projects on their local computer. WAMP stands for: Windows - Apache - MySQL- PHP5. WAMP5 automatically configures all these components to work together, wherever you install them on your local drive."; fDesc[2] = "other Express Edition products focus on programming and application development, Visual Web Developer provides a set of tools; its versatile HTML and CSS editing tools are paired with the power of ASP.NET to allow users to quickly build web applications"; fDesc[3] = "programmer, then you will find out that PHPMaker can help you a lot. PHPMaker is a script generator that will let you manipulate data bases easily. In other words, you will be able to generate quick control panels (written in PHP) for a MySQL database."; fDesc[4] = "critical performance issues in your web site or web server that may prevent optimal experience for your site's visitors.This incredible software allows you to test your web server performance under normal and excessive loads."; fDesc[5] = "introduction to Visual Web Developer 2005 Express Edition, and is oriented to people interested in designing and building ASP.NET Web sites. Besides the lessons, the course offers this additional material consisting of 2 ready-to-print documents to have on the desk when you take the lessons."; fDesc[6] = "introduction to Visual Web Developer 2005 Express Edition and is oriented to people interested in designing and building ASP.NET Web sites. The purpose of Lesson 3 is to explain what are the events, how they can be used in the code you write, and what are the possible responses to those events."; fDesc[7] = "modify the page DOM (Document Object Model) \"on the fly\", without need for refreshing the entire page to see the changes. You can get in-depth information about the web document you are seeing on screen."; fDesc[8] = "2005 Express Edition. The purpose of Lesson 1 is to get the students in touch with Visual Web Developer 2005 Express Edition and describe the work process involved in the design and build of a ASP.NET web page."; fDesc[9] = "2005 Express Edition. The purpose of Lesson 6, “Style sheets and Master Pages”, is to explain and teach how to use Style Sheets and Master Pages when building web pages. Cascading Style Sheets and classes concepts are also included in the lesson."; fDesc[10] = "Edition, and is oriented to people interested in designing and building ASP.NET Web sites. The purpose of Lesson 11 is to begin developing a quiz engine explaining the process involved. Over the next lessons the project will be completed."; fDesc[11] = "introduction to Visual Web Developer 2005 Express Edition, and is oriented to people interested in designing and building ASP.NET Web sites. Lesson 4 clarifies what is maintaining state in web applications, and how can ASP.NET 2.0 server help you managing this state."; fDesc[12] = "Web Developer 2005 Express Edition oriented to people interested in designing and building ASP.NET Web sites. The purpose of Lesson 2 is to explore several ASP.NET server controls that are available in Visual Web Developer."; fDesc[13] = "Edition, and is oriented to people interested in designing and building ASP.NET Web sites. Lesson 10 explains the process of uploading your website to the server and remarks the importance of the Web.Config File in it."; fDesc[14] = "you can do with VWD in order to create dynamic Web applications. This tour is the best way to begin studying Visual Web Developer 2005 Express Edition, and also the less time consuming one. It is available for free for anyone who’s eager to learn and doesn’t require any prerequisites."; fDesc[15] = "Web Developer 2005 Express Edition. The purpose of Lesson 5, “Debugging and Tracing”, is to explain how to debug and monitor your web applications using Visual Web Developer 2005 Express Edition and ASP.NET 2.0."; function tCollapseAll(maxID) { document.getElementById("alls_action").innerHTML = "Expand descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("desc_" + id)) tShowHide(id, 2); } } function tExpandAll(maxID) { document.getElementById("alls_action").innerHTML = "Collapse descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("more_" + id)) tShowHide(id, 1); } } function tShowHide(id, show) { var s = document.getElementById("more_" + id); if ((s.innerHTML!=fDesc[id] || show==1) && show!=2) { s.innerHTML = fDesc[id]; } else { s.innerHTML = '...'; } }