Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

Wednesday, January 18, 2012

video tutorial: Sybex CCNA Study Guide 6th Edition CD


Completely Revised for the New 2007 Version of the CCNA Exam
58 [Training Video] Sybex CCNA 640 802 Study Guide 6th Edition CD
Cisco networking authority Todd Lammle has completely updated this new edition to cover all of the exam objectives for the latest version of the CCNA exam. Todd’s straightforward style provides lively examples, easy-to-understand analogies, and real-world scenarios that will not only help you prepare for the exam, but also give you a solid foundation as a Cisco networking professional.
Packed with updated topics that have been added to the 2007 version of the CCNA exam, this updated study guide features expanded coverage of key topic areas plus new material on switching, network address translation, and OSPF. Inside, find the complete instruction you need, including:
* Full coverage of all exam objectives in a systematic approach, so you can be confident you’re getting the instruction you need for the exam
* Practical hands-on exercises and labs to reinforce critical skills,
* Real-world scenarios that put what you’ve learned in the context of actual job roles
* Challenging review questions in each chapter to prepare you for exam day
* Exam Essentials, a key feature in each chapter that identifies critical areas you must become proficient in before taking the exam
* CD-ROM Includes:
- Chapter Review Questions
- Four Full-Length Practice Exams
- 200 Electronic Flashcards
- Audio and Video Instruction from Todd Lammle
- Full book in searchable PDF format
Fast download link from Mediafire:

Enhanced by Zemanta

Read more...

Tuesday, January 10, 2012

JSP Tutorials


JSP Tutorials

  
JSP Tutorials and examples, you will find many examples with working source code.
  1. Introduction to JSP
    Java Server Pages or JSP for short is Sun's solution for developing dynamic web sites. JSP provide excellent server side scripting support for creating database driven web applications.
  2. Introduction to the JSP tags
    In this lesson we will learn about the various tags available in JSP with suitable examples. In JSP tags can be devided into 4 different types.
      
  3. Detail introduction to JSP Declaratives
    JSP Declaratives begins with <%! and ends %> with .We can embed any amount of java code in the JSP Declaratives. Variables and functions defined in the declaratives are class level and can be used anywhere in the JSP page.
      
  4. JSP Actions
    In this section we will explain you about JSP Action tags and in the next section we will explain the uses of these tags with examples.
  5. Detail Introduction to JSP Scriptlets and JSP Expressions with examples
    JSP Scriptlets begins with <% and ends %> .We can embed any amount of java code in the JSP Scriptlets. JSP Engine places these code in the _jspService() method.
     
  6. Writing the Date JSP
    Till now you learned about the JSP syntax, now I will show you how to create a simple dynamic JSP page that prints the current date and time.
       
  7. Retrieving the data posted to a JSP file from HTML file
    Now I will show you how to retrieve the data posted from a HTML file in a JSP page. Consider an html page that prompts the user to enter his/her name, let's call it getname.htm.
     
  8. Accessing database from JSP
    In This article I am going to discuss the connectivity from MYSQL database with JSP.we take a example of Books database. This database contains a table named books_details.
     
  9. Implement JavaScript with JSPIn this section we are going to implement  insert data, delete data, and update data using with JDBC database and also using of JavaScript.
     
  10. JSP Cookies Example
    This tutorial shows how to handle cookies in JSP pages. In this tutorial you will learn how to add cookies through jsp page and then show the value of the same cookie in another JSP page.

Read more...

Labels