System Application Development (.NET)
Syllabus and Course Manual for Class Lectures
PART I (.NET Programming Using C#)
Total Lecture Count: 10 Total Duration: 15:00 Hours (approx.)
- Introduction
- What is System Development
| function preview_image(imgOutputId, textOutputId, event) { | |
| var reader = new FileReader(); | |
| reader.onload = function () { | |
| var imgOutput = document.getElementById(imgOutputId); | |
| var textOutput = document.getElementById(textOutputId); | |
| imgOutput.src = reader.result; | |
| textOutput.value = imgOutput.src; | |
| } | |
| reader.readAsDataURL(event.target.files[0]); | |
| } |
| <html> | |
| <head> | |
| <script src="jquery-2.1.4.js"></script> | |
| <script src="jspdf.min.js"></script> | |
| <link rel="stylesheet" type="text/css" href="styles.css"> | |
| </head> | |
| <body> | |
| <div id="navbar"><span>jsPDF Tutorial - Form Filling</span></div> | |
| <div id="wrapper"> |