4. กก ( Web-based Technology ) (System Development Life Cycle : SDLC) ก ก ก

Size: px
Start display at page:

Download "4. กก ( Web-based Technology ) (System Development Life Cycle : SDLC) ก ก ก"

Transcription

1 2 ก ก ก ก ก ก ก 1. ก ก ก ก 1.1 ก ก 1.2 ก ก 2. ก ก.NET 3. ก ก ก 4. กก ( Web-based Technology ) 5. ก ก 6. ก ก ก ก ก 1. ก ก ก (System Development Life Cycle: SDLC) ก (System Development Life Cycle : SDLC) ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก 1.1 ก ก ก ก ก ก ก ก ก 1.2 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก

2 1.3 ก ก ก ก ก ก ก ก ก ก 1.4 ก ก ก ก ก ก ก ก 1.5 ก ก ก ก ก ก ก ก ก ก ก ก ก 1.6 ก ก ก ก ก ก ก ก ก ก ก ก ก 1.7 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก (DFD) ก ก ก ก ก ก 1) ก ก ก ก ก ก ก ก ก 2) ก ก ก ก ก ก ก ก ก ก ก ก ก ก กก 7

3 3) ก ก 2 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก 8 4) ก ก ก ก ก ก ก ก ก 2. ก ก ก ก ก ก ก ก ก CGI (Common Gateway Interface) ก ก ก Perl ก ก ก UNIX ASP (Active Server Pages) HTML (Dynamic) ก IIS PWS ก UNIX Windows NT IIS PWS ก Chile! Soft Instant Asp Halcyon soft ก VBScript JavaScript ก PHP (Professional Home Page) ก ก Open Source JSP (Java Server Pages) Java ก XHTML Cold Fusion ก ก ASP ก ASP ADO VBScript Cold Fusion ก ก ก ก

4 Cold Fusion Server Software Microsoft IIS, Netscape Enterprise Server Unix (Apache) ก Active Sever Pages ASP ก ASP ก ก VBScript Jscript ( ก JavaScript) ก ก HTML ก ก ASP ก ASP ก ก ( ก <% %>) ก ก ก ASP ก ก ก (ASP Interpreter) ก ก ก HTML ก (Dynamic) ก ก (Static) 2.1 กก ASP ASP ก กก Server Side ก ก Client Side ก ก ก HTTP (HTTP Request) ก ก ก ก ก ASP ( ก.asp) ก ก ASP ก ASP ก ก ADO ก ASP ก HTML ก (HTTP Response) ก ก ก ก CGI (Common Gateway Interface) ก ASP ก ก CGI ก 2-1 9

5 10 Browser Request Response Server HTML ASP Object or Component ASP Engine ASP Script Oracle SQL Provider Driver ADO Access ODBC FoxPro 1 กก ASP 2.2 ก ก ODBC ก ก ก DSN (Data Source Name) ก ODBC ก ก ก ก ก ก ก ก Access SQL Server Oracle ก ก ก ก ก ก Set ObjDB=Server.CreateObject ("ADODB.Connection") ObjDB.Open DSN-name, User-name,Password DSN-name DSN ก

6 ก ODBC DSN ก ก ก ก ก ก DSNLess ก ก DSN ก ก ODBC ก ก ก ก ก ก MS Access SQL Server ก ก ก ก ก DSNLess ก FoxPro MS Access SQL Server Set ObjDB=Server.CreateObject("ADODB.Connection") ObjDB.Open "DRIVER={Microsoft Foxpro Driver (*.dbf)};dbq=path" ก ก path.dbf ก ก FoxPro ก ก Set ObjDB=Server.CreateObject("ADODB.Connection") ObjDB.Open "DRIVER={Microsoft Access Driver (*.mdb)};dbq=path and database" path and database ก 1 ก ก ก ก FoxPro ก ก ก 1 Access ก 1 FoxPro Set ObjDB=Server.CreateObject("ADODB.Connection") ObjDB.Open "DRIVER={SQL Server};SERVER=server-name; DATABASE=database_name UID=user_Name; PWD=password" Server-name IP ก database-name user-name password

7 2.3 ก ก ก ก ก ก MS SQL Server 7.0 DBMS ก 3 Books 12 Borrow Member ก ก ก ก ก MS SQL Server 7.0 ASP ก

8 ASP ก DSNLess <% Set con=server.createobject("adodb.connection") con.open "Driver={SQL Server};SERVER=suphakit; DATABASE=LabSQL; UID=sa; PWD=" %> ASP ก DSN DSN LABSQL <% Set con=server.createobject("adodb.connection") con.open '"LABSQL","sa","" %> ก ก 1) ก ก ก ก Dim con ( ก ) Set con=server.createobject("adodb.connection") con.open "Driver={SQL Server};SERVER=suphakit; DATABASE=LabSQL; UID=sa; PWD=" 2) SQL ก ก ก strsql = "SELECT * FROM Books" 3) SQL Dim rsbooks ( ก ) Set rsbooks=server.createobject("adodb.recordset") Set rsbooks=con.execute (SQL) 4) ก Do While Not rsbooks.eof 13

9 Response.Write rsbooks.fields("book_id") & " " Response.Write rsbooks.fields("order_date") & "<BR>" rsbooks.movenext Loop 5) ก ก ก con.close Set con=nothing ก ก ก ก ก ก ก ก ก 1) ก ก ก ) ก ก SQL strsql="insert INTO Books (Book_ID, Title, Publisher, Order_Date) VALUES ('" &_ Request.Form("BookID") & "','" &_. Request.Form("OrderDate") & "');" Set rsbooks = Server.CreateObject("ADODB.Recordset") Set rsbooks = con.execute (strsql) 3) ก ก ก ก ก ก ก ก ก 1) ก ก ก ) ก ก SQL strsql="update Books SET Title='" & Request.Form("Title") &_ "' WHERE Book_ID='" & Request.Form("BookID") & "';" response.write strsql & "<BR>" Set rsbooks = Server.CreateObject("ADODB.Recordset") 14

10 15 "'" Set rsbooks = con.execute (strsql) 3) ก ก ก ก ก ก ก 1) ก ก ก ) ก ก SQL strsql="delete FROM Books WHERE Book_ID='" & Request.Form("BookID") & response.write strsql & "<BR>" Set rsbooks = Server.CreateObject("ADODB.Recordset") Set rsbooks = con.execute (strsql) 3) ก ก ก ก ก ก ก 1) ก ก ก ) ก SQL strsql="select * From Books Where Title Like '%M%'" Set rsbook=server.createobject("adodb.recordset") Set rsbook = con.execute (strsql) 3) กก Do while not rsbook.eof Response.Write rsbook.fields("book_id").value & ", " Response.Write rsbook.fields("order_date").value & "<BR>" rsbook.movenext Loop 4) ก ก

11 ก ก.NET.NET ก ก (Framework) ก ก ก ก ก ก (PC ) ก (Solution) ก ก ก ก (Anywhere, Any time and on Any Devices).NET ก ก.NET ก ก ก ก ก (Operating System) ( ก ) ก ( ) ก ก ก (Services) (Web Services) ก ก ก ก ก ก ก.NET ก ก ก ก ก ก ก ก ก ก ( ) ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก.NET ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก กก ก ก ก ก ก ( ก ) ก ก ก ก ก ก ก ก ก ก ก กก ก ก ก ( ก ) ก 16

12 Hotmail ก ( ) ก ก ก ก ก ก ก ก ( Hotmail ก ก ) ก.NET ก 3 ก (Storage) ก (Authentication) (Notification) ก ก ก MSN Messenger ( ก Mobile ก ) ก ก ก ก ก ก ก.NET Framework ก (OS) ก.NET ก ก ก ก ก ก.NET Framework ก ก 3 1.Programming Language: ก.NET ก.NET 3 C# ก C++ ก JAVA ก VB.NET ก Visual Basic 6.0 JScript.net ก JScript JavaScript 2.Base Classes Library: Library ก ก ก Library incould ASP library ก.NET ก Library ก ก ก ก Library ก 3.Common Language Runtime (CLR):.NET ก CLR ก ก ก ก 17

13 ก Intermediate language (IL) ก ก CLR ก ก ก ก ก ก 18 2.Net Framework.NET Framework ก 1. ก ก ก ก ก ก 2. ก ก (OS) ก ก ก ก.NET Framework.NET Framework ก ก ก ก ก 3. ก ก ก ก ก ก ก ก ก ก 4. ก ก ก ก ก ก ก ก ก ก 5. ก.NET Framework ก ก permission ก ก ก

14 ก ก ก (Database Management System - DBMS) ก ก ก ก ก ก ก (file) ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก (DBMS) ก ก ก ก ก ก ก ก ก ก ก 19 ก ก ก ก ก ก ก ก ก ก ก ก DBMS Database : ก ก ก 1. ก ก ก 4.

15 5. ก ก ก ก ก ก ก ก ก ก ก ก ก (entities) (Data Model) ก ก (Hierarchical Data Model) (Network Data Model) (Relational Data Model) ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก 21 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก (Query language) ก ก ก กก ก ก ก ก ก ก ก (interactive) ก ก ก ก 20

16 ก ก กก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก (Check point) ก ก ก ก ก ก ก ก ก ก (log file) ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก (Physical independence) ก (logical independence) ก ก ก ก ก ก ก 21

17 ก ก ก ก ก ก ก (Optimization) ก ก ก ก ก ก ก ก ก ก ก (Database Administrator) ก ก ก ก ก ก ก ก ก ก ก ก ก / ก กก ( Web-based Technology ) ก ก (Web page) ก ก ก ก ก ก 1. ก ก ก ก ก ก 2. Interactive ก ก ก ก ก (Browser) ก (URL : Uniform Resource Locator) ก ก ก ก ก ก 3. ก ก (Operating System) ก ก ก Text File ก ก ก Unix Windows ก ก ก ก ก 1. ASP.NET ก ก ก ก ก ก ก ก ก ก 22

18 ก ก ก ก ก ก ก ก ก ก ก ก ก ก Microsoft ( ก, 2546, 14-18) ก ก ก ก ก ก ก ก Microsoft ก NGWS ก Next Generation Windows Service Next Generation Web Services Microsoft.Net ก ก Microsoft.NET ก.NET ก ก Windows กก ก.NET ก Visual Basic.NET, C#.NET, C++.NET, J#.NET ก COBOL.NET.NET.NET Framework ก 23 4 ก.NET Framework

19 .NET ก ก ก.NET ก ก ก ก Common Language Specifications (CLS).NET ก ก ก ( language neutral ).NET Framework ก Microsoft Visual Studio 2005 Integrated Development Environment (IDE) ก ก ก Intermediate language ก MISL (Microsoft Intermediate Language) ก Java Platform ก ก.NET ก ก CLS ก ก ก 20 CLS Pascal.NET, Perl.NET ก COBOL.NET.NET Framework Common Language Runtime (CLR) execution engine ก ก ก ก Windows CLS MSIL ก Just-In-Time (JIT) ก ก กก ก ก ก CLR ก ก ก ก ก ก (Garbage Collection) ก ก ก (exception handling) (security management) 24

20 ก ก Microsoft Visual Studio 2005 ก Visual Basic ก ก BASIC Microsoft Visual Studio 2005 ก Express Edition Microsoft Visual Studio 2005 ก VB.NET ก ก ก ก Visual Basic 6.0 ก ก ก ก ก 1) OOP (Object Oriented Programming) ก inheritance,overloading, overriding ก C++, Dephi Java 2).NET.NET Framework CLR ก VB.NET ก ก C#.NET 3) ก ก Web Form ก drag-and-drop ก ก Windows Web Service XML (Extensible Markup Language) ก ก ก 4) ก ASP.NET กก Web Form Web Service ก 5) ก Console VB.NET ก ก DOS ก - ก ก Threading 6) ก ก ก OOP - ADO.NET ก ADO RDO VB6 7) ก ก CLR 8) ก ก I/O ก ก System.IO ก ก ก ก 25

21 ASP.NET ก.Net Framework VB.NET ก ก ASP 3.0 ASP ก IIS ( Internet Information Service ) ก Windows ก Windows NT 4.0, Windows NT Workstation 4.0 ก Windows ก Windows XP Professional ASP.NET ก HTML กก ก ก.aspx ก ก ก HTML ก ก ก HTML ( ) ก ASP.NET ASP ก ก ก ก ASP ก Interpreter ก ก VBScript, JavaScript Jscript ASP.NET ก Compiler ก ก Intermediate Language (IL) Page Class ก ก ก ก ก ก Page Class ก ก ก ก ก ก ก ก ก ASP ก VBScript Jscript HTML ก FrontPage,Visual InterDev ก Notepad, EditPlus ก ก ASP.NET ก ก ก ก Code Behind ก ก ASP.NET ก ก.NET VB.NET, C#.NET ก ก ก Web Form ก ก ก ก ก ก ก ก Windows ก ก ก ก ASP ก ก stateless ก ก ASP.NET ก Stateful ก ก ADO.NET Visual Basic 6.0 ก ก ADO ( ActiveX Data Object ) ก ก connected database ก ก 26

22 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก Microsoft Visual Studio 2005 ADO.NET ก ADO ก disconnected database ก ก ก ADO ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก กก ก ก ( ADO ก ก disconnected database ก ก ก กก ก ADO.NET ก on-line ก ก ) 2. ก Microsoft SQL Server Microsoft SQL Server ( ก, 2544, 15-21) ก ก (Relational Database Management System RDBMS) ก ก Windows 95/98, Windows NT 4.0, Windows XP Windows 2000 SLQ Server ก ก Client Server Database ก ก ก ก ก ก Microsoft SQL Server ก Stand-Alone Database ก Window 95/98 ก ก ก ก Microsoft SQL Server ก ก ก ก Transact-SQL SQL-89 SQL-92 ก ก Transact-SQL ก ก ก ก 27

23 ก SQL Server SQL Server ก ก ก ก ก ก ก ก ก 28 ก 1) Application ก ก ก ก API (Application Programming Interface ก ก ก ) 2) Database Interface SQL Server ODBC (Open Database Connectivity ) OLE DB (Object Linking and Embedding Database ) 3) Network Library ก Net-Library ก ก SQL Server Net-Library ก TCP/IP,Named-Pipes, Novell IPX/SPX, Banyan VINES/IP AppleTalk ADSP

24 4) Open Data Service Net-Library SQL Server extended stored procedure ก 5) Open Data Service ก request ก ก SQL Server ก ก ก 29 ก ก SQL Server ก ก ก ก SQLServer ก API ก ก 1) OLE DB (Object Linking and Embedding Database) Component Object Model (COM based) ก OLE DB ก OLE DB ก ก ก Relational database ก ก ก Access, Oracle 2) ODBC (Open Database Connectivity) ก ก ODBC 3) Data Object Interfaces 2

25 3) ADO (Active X Data Objects) OLEDB ( OLE DB API Low Level) ก ADO Microsoft Visual Basic, Microsoft Visual C++, Active Server Pages (ASP) 4) RDO (Remote Data Objects) OLE DB ก ก ก 5) SQL Server Component ก Microsoft SQL Server 6) SQL Server Services ก ก SQL Server ก SQL Server Windows NT Windows NT 7) MS SQL Server Service ก SQL Server ก ก ก ก ก ก ก ก ก ก (Concurrency Control) ก ก ก ก ก ก 8) SQL Server Agent Service ก MS SQL Server Service ก Multi Server Job ก ก Server (Replication) ก (Alert) ก ก Operator 9) Microsoft Distributed Transaction Coordinator (MS DTC) Service ก (Transaction) ก ก กก 1 ก ก ก ก Two-Phase Commit ( ก ก ก กก 1 ก ) 10) Microsoft Search Service ก ก Text Searching ก ก SQL Server ก ก Service Manager ก ก ก Windows NT 30

26 11) SQL Server Enterprise Manager ก ก ก ก ก SQL Server ก ก ก ก ก ก Enterprise Manager ก 12) ก ก 13) ก ก ก ก Stored Procedure 14) ก ก SQL Server 15) ก ก 16) ก (Alert) ก ก กก SQL Server 17) ก Replicate Management ก ก ก ก ก ก SQL Server ก ก ก 31

27 32 ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก.. ก ก ก ก ก 1. ก 2. ก 3. ก 4. ก ก ก ก ก ก ก ก 12. ก ก ก ก ก ก 5. ก 6. ก ก ก ก ก ก ก ก ก ก ก ก ก ก 1. ก / ก 4. ก ก ก 5. ก ก ก ก 2. ก ก 3. ก 4. ก ก 5. ก 6. ก 7. ก 8. ก 6. ก ก 10. ก ก ก ก ก 3. ก ก ก 6. ก ก ก ก ก ก 2. ก ก ก 3. ก ก ก ก ก 2. ก 3. ก 4. ก 5. ก 6. - ก 7. ก 8. ก

28 ก (2545) ก ก ก ก ก ก ก ก ก ก ก - ก ก ก ก Visual Basic 6 ก ก SQL Server 7 ก ก ODBC ก ก Client/Server ก ก ก - ก ก ก ก ก ก ก (2545) ก ก ก ก ก ก ก ก ก MySQL ก ASP ก 5 ก ก ก ก ก ก 2 ก ก ก กก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก ก - ก ก ก 33

Active Server Pages: Technology for Creating Dynamic Web Pages and Webenabled

Active Server Pages: Technology for Creating Dynamic Web Pages and Webenabled Workshop on Multimedia and Internet Technologies 26 th -28 th February, 2001 DRTC, Bangalore Active Server Pages: Technology for Creating Dynamic Web Pages and Webenabled Databases Documentation Research

More information

DAVID M. KROENKE and DAVID J. AUER. DATABASE CONCEPTS, 7 th Edition. Chapter Seven. Database Processing Applications. Chapter Objectives

DAVID M. KROENKE and DAVID J. AUER. DATABASE CONCEPTS, 7 th Edition. Chapter Seven. Database Processing Applications. Chapter Objectives DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 7 th Edition Chapter Seven Database Processing Applications Chapter Objectives Understand and be able to set up Web database processing Learn the basic

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 14 Database Connectivity and Web Technologies Database Systems: Design, Implementation, and Management Tenth Edition Chapter 14 Database Connectivity and Web Technologies Database Connectivity Mechanisms by which application programs connect and communicate

More information

New programming language introduced by Microsoft contained in its.net technology Uses many of the best features of C++, Java, Visual Basic, and other

New programming language introduced by Microsoft contained in its.net technology Uses many of the best features of C++, Java, Visual Basic, and other C#.NET? New programming language introduced by Microsoft contained in its.net technology Uses many of the best features of C++, Java, Visual Basic, and other OO languages. Small learning curve from either

More information

Introduction to.net Framework Week 1. Tahir Nawaz

Introduction to.net Framework Week 1. Tahir Nawaz Introduction to.net Framework Week 1 Tahir Nawaz .NET What Is It? Software platform Language neutral In other words:.net is not a language (Runtime and a library for writing and executing written programs

More information

A NET Refresher

A NET Refresher .NET Refresher.NET is the latest version of the component-based architecture that Microsoft has been developing for a number of years to support its applications and operating systems. As the name suggests,.net

More information

Introduction to.net Framework

Introduction to.net Framework Introduction to.net Framework .NET What Is It? Software platform Language neutral In other words:.net is not a language (Runtime and a library for writing and executing written programs in any compliant

More information

Overview of Professional Quest Technologies

Overview of Professional Quest Technologies Overview of Professional Quest Technologies Professional Quest Web Architecture Professional Quest's utilizes a number of industry standard components in its web architecture. Server Web Pages For the

More information

13. Databases on the Web

13. Databases on the Web 13. Databases on the Web Requirements for Web-DBMS Integration The ability to access valuable corporate data in a secure manner Support for session and application-based authentication The ability to interface

More information

CPET 581 E-Commerce & Business Technologies. Topics

CPET 581 E-Commerce & Business Technologies. Topics CPET 581 E-Commerce & Business Technologies Design and Build E-Commerce Web Sites, Mobile Sites, and Apps Lecture Note 1 of 2 References: *Chapter 4. Building an E-Commerce Presence: Web Sites, Mobile

More information

(C) Global Journal of Engineering Science and Research Management

(C) Global Journal of Engineering Science and Research Management ANDROID BASED SECURED PHOTO IDENTIFICATION SYSTEM USING DIGITAL WATERMARKING Prof.Abhijeet A.Chincholkar *1, Ms.Najuka B.Todekar 2, Ms.Sunita V.Ghai 3 *1 M.E. Digital Electronics, JCOET Yavatmal, India.

More information

Yoon Joong Kim. Department of computer Engineering Hanbat National University

Yoon Joong Kim. Department of computer Engineering Hanbat National University Yoon Joong Kim Department of computer Engineering Hanbat National University Contents Microsoft.NET History What is Microsoft.NET - Goal/.NET Platform/issues and ideas The Microsoft.NET Framework Common

More information

Introduction to Web Development with Microsoft Visual Studio 2010 (10267A)

Introduction to Web Development with Microsoft Visual Studio 2010 (10267A) Introduction to Web Development with Microsoft Visual Studio 2010 (10267A) Overview This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Active Server Pages Architecture

Active Server Pages Architecture Active Server Pages Architecture Li Yi South Bank University Contents 1. Introduction... 2 1.1 Host-based databases... 2 1.2 Client/server databases... 2 1.3 Web databases... 3 2. Active Server Pages...

More information

Databases and the Internet

Databases and the Internet C6545_14 10/22/2007 11:17:41 Page 570 PART V Databases and the Internet Database Connectivity and Web Technologies 14 C6545_14 10/22/2007 11:18:22 Page 571 Casio Upgrades Customer Web Experience A global

More information

Inf 202 Introduction to Data and Databases (Spring 2010)

Inf 202 Introduction to Data and Databases (Spring 2010) Inf 202 Introduction to Data and Databases (Spring 2010) Jagdish S. Gangolly Informatics CCI SUNY Albany April 22, 2010 Database Processing Applications Standard Database Processing Client/Server Environment

More information

Introduction To Web Architecture

Introduction To Web Architecture Introduction To Web Architecture 1 Session Plan Topic Estimated Duration Distributed computing 20 min Overview of Sun Microsoft Architecture 15 min Overview of Microsoft Architecture 15 min Summary 15

More information

ST. XAVIER S COLLEGE (Affiliated to Tribhuvan University) Maitighar, Kathmandu NET CENTRIC COMPUTING [CSC 360]

ST. XAVIER S COLLEGE (Affiliated to Tribhuvan University) Maitighar, Kathmandu NET CENTRIC COMPUTING [CSC 360] ST. XAVIER S COLLEGE (Affiliated to Tribhuvan University) Maitighar, Kathmandu NET CENTRIC COMPUTING [CSC 360] THEORY ASSIGNMENT #1 Submitted By Aashish Raj Shrestha 3 nd Year / 6 th SEM 013BSCCSIT002

More information

Microsoft Certified Professional Transcript

Microsoft Certified Professional Transcript Last Activity Recorded: March 12, 2009 Microsoft Certified Professional NEAL WALTERS 1770 PLUMMER DR ROCKWALL, TX 75087 US nwalters@sprynet.com Microsoft Certification Status Credential Microsoft Certified

More information

Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P.

Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P. Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P. Russo Active Server Pages Active Server Pages are Microsoft s newest server-based technology for building dynamic and interactive

More information

Discovering Computers Chapter 13 Programming Languages and Program Development

Discovering Computers Chapter 13 Programming Languages and Program Development Discovering Computers 2009 Chapter 13 Programming Languages and Program Development Chapter 13 Objectives Differentiate between machine and assembly languages Identify and discuss the purpose of procedural

More information

A201 Object Oriented Programming with Visual Basic.Net

A201 Object Oriented Programming with Visual Basic.Net A201 Object Oriented Programming with Visual Basic.Net By: Dr. Hossein Computer Science and Informatics IU South Bend 1 What do we need to learn in order to write computer programs? Fundamental programming

More information

Microsoft.NET Programming (C#, ASP.NET,ADO.NET, VB.NET, Crystal Report, Sql Server) Goal: Make the learner proficient in the usage of MS Technologies

Microsoft.NET Programming (C#, ASP.NET,ADO.NET, VB.NET, Crystal Report, Sql Server) Goal: Make the learner proficient in the usage of MS Technologies Microsoft.NET Programming (C#, ASP.NET,ADO.NET, VB.NET, Crystal Report, Sql Server) Goal: Make the learner proficient in the usage of MS Technologies for web applications development using ASP.NET, XML,

More information

Course Syllabus. Course Title. Who should attend? Course Description. ASP.NET ( Level 1 )

Course Syllabus. Course Title. Who should attend? Course Description. ASP.NET ( Level 1 ) Course Title ASP.NET ( Level 1 ) Course Description ASP Stands for Active Server Pages it s the most secure robust server side technology. It s used to create dynamic web applications, ASP.NET is a unified

More information

University College of Southeast Norway ASP.NET. Web Programming. Hans-Petter Halvorsen,

University College of Southeast Norway ASP.NET. Web Programming. Hans-Petter Halvorsen, University College of Southeast Norway Hans-Petter Halvorsen, 2016.11.01 ASP.NET Web Programming http://home.hit.no/~hansha Table of Contents 1 Introduction... 4 1.1 Visual Studio... 4 1.2 C#... 5 1.3.NET

More information

Program Contents: DOTNET TRAINING IN CHENNAI

Program Contents: DOTNET TRAINING IN CHENNAI DOTNET TRAINING IN CHENNAI NET Framework - In today s world of enterprise application development either desktop or Web, one of leaders and visionary is Microsoft.NET technology. The.NET platform also

More information

Data-Driven Web Pages

Data-Driven Web Pages Part I Data-Driven Web Pages In these chapters you ll be introduced to: The data-driven world that web and database developers need to master Dreamweaver MX and its interface Coding practices for successful

More information

Introduction to.net. The path. The Distributed Group University of Seville Spain - España. Introduction The elements of.net. Assessments Conclusions

Introduction to.net. The path. The Distributed Group University of Seville Spain - España. Introduction The elements of.net. Assessments Conclusions to.net The Distributed Group University of Seville Spain - España The path 1 1996 Internet 1 st Gen IE/IIS 1992 Client/Server The Way to.net 1997 Internet 2 nd Gen WinDNA 2001 Internet 3 rd Gen.NET Win32

More information

.Net. Course Content ASP.NET

.Net. Course Content ASP.NET .Net Course Content ASP.NET INTRO TO WEB TECHNOLOGIES HTML ü Client side scripting langs ü lls Architecture ASP.NET INTRODUCTION ü What is ASP.NET ü Image Technique and code behind technique SERVER SIDE

More information

CS WEB TECHNOLOGY

CS WEB TECHNOLOGY CS1019 - WEB TECHNOLOGY UNIT 1 INTRODUCTION 9 Internet Principles Basic Web Concepts Client/Server model retrieving data from Internet HTM and Scripting Languages Standard Generalized Mark up languages

More information

Crystal Reports 2008 with Service Pack 0

Crystal Reports 2008 with Service Pack 0 Revision Date: September 19, 2007 2008 with Service Pack 0 Overview Contents This document lists specific platforms and configurations for Crystal Reports 2008 with Service Pack 0. INTRODUCTION...3 PRODUCTS...3

More information

Instructor s Notes Web Data Management Web Client/Server Concepts. Web Data Management Web Client/Server Concepts

Instructor s Notes Web Data Management Web Client/Server Concepts. Web Data Management Web Client/Server Concepts Instructor s Web Data Management Web Client/Server Concepts Web Data Management 152-155 Web Client/Server Concepts Quick Links & Text References Client / Server Concepts Pages 4 11 Web Data Mgt Software

More information

Introduction to Autodesk MapGuide EnterpriseChapter1:

Introduction to Autodesk MapGuide EnterpriseChapter1: Chapter 1 Introduction to Autodesk MapGuide EnterpriseChapter1: In this chapter, you review the high-level key components that comprise Autodesk MapGuide Enterprise. The Autodesk MapGuide Studio, an integral

More information

Introduction to Autodesk MapGuide EnterpriseChapter1:

Introduction to Autodesk MapGuide EnterpriseChapter1: Chapter 1 Introduction to Autodesk MapGuide EnterpriseChapter1: In this chapter, you review the high-level key components that make up Autodesk MapGuide Enterprise. The Autodesk MapGuide Studio, an integral

More information

ICOM 5016 Database Systems. Database Users. User Interfaces and Tools. Chapter 8: Application Design and Development.

ICOM 5016 Database Systems. Database Users. User Interfaces and Tools. Chapter 8: Application Design and Development. Chapter 8: Application Design and Development ICOM 5016 Database Systems Web Application Amir H. Chinaei Department of Electrical and Computer Engineering University of Puerto Rico, Mayagüez User Interfaces

More information

.Net Interview Questions

.Net Interview Questions .Net Interview Questions 1.What is.net? NET is an integral part of many applications running on Windows and provides common functionality for those applications to run. This download is for people who

More information

DOT NET Syllabus (6 Months)

DOT NET Syllabus (6 Months) DOT NET Syllabus (6 Months) THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In- Time Compilation and CLS Disassembling.Net Application to IL

More information

Saikat Banerjee Page 1

Saikat Banerjee Page 1 1.What is.net? NET is an integral part of many applications running on Windows and provides common functionality for those applications to run. This download is for people who need.net to run an application

More information

Chapter 1: Product Requirements and Specifications

Chapter 1: Product Requirements and Specifications 1 Chapter 1: Product Requirements and Specifications This chapter describes the product requirements for the Access Assurance Suite: Access Assurance Suite on page 2 Ticketing (Audit) and Authentication

More information

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 10267 - Introduction to Web Development with Microsoft Visual Studio 2010 Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This five-day instructor-led

More information

HCIM SUMMER WORKSHOP Introduction to C#

HCIM SUMMER WORKSHOP Introduction to C# HCIM SUMMER WORKSHOP Introduction to C# .NET.NET is: Microsoft s Platform for Windows Development CLR (Common Language Runtime) the Virtual Machine that runs MSIL (Microsoft Intermediate Language Code)

More information

Introduction p. 1 Basic Programming Introduction p. 7 Introduction to Python p. 7 Why Use Python? p. 10 Main Technical Features p.

Introduction p. 1 Basic Programming Introduction p. 7 Introduction to Python p. 7 Why Use Python? p. 10 Main Technical Features p. Introduction p. 1 Basic Programming Introduction p. 7 Introduction to Python p. 7 Why Use Python? p. 10 Main Technical Features p. 13 Python Distribution p. 16 Installing and Configuring Python p. 18 Python

More information

Introduction to Web Development with Microsoft Visual Studio 2010

Introduction to Web Development with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft Visual Studio 2010 Course 10267; 5 Days, Instructor-led Course Description This five-day instructor-led course provides knowledge and skills on developing

More information

Release Bulletin DataWindow.NET 2.5

Release Bulletin DataWindow.NET 2.5 Release Bulletin DataWindow.NET 2.5 Document ID: DC00047-01-0250-01 Last revised: August 16, 2007 Topic Page 1. Accessing current release bulletin information 1 2. Product summary 2 3. Special installation

More information

Crystal Reports Overview. Contents. Supported Platforms. This document lists specific platforms and configurations for Crystal Reports 2008.

Crystal Reports Overview. Contents. Supported Platforms. This document lists specific platforms and configurations for Crystal Reports 2008. Revision Date: October 29, 2007 Crystal Reports 2008 Overview Contents This document lists specific platforms and configurations for Crystal Reports 2008. INTRODUCTION... 2 PRODUCTS... 2 LANGUAGES... 2

More information

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable();

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); Getting Started with protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); string connectionstring = System.Configuration.ConfigurationManager.ConnectionStrings ["default"].connectionstring;!

More information

Introduction to SQL 2000: Installation and Implementation. SQL Server Administration suite: course 1 of 4

Introduction to SQL 2000: Installation and Implementation. SQL Server Administration suite: course 1 of 4 Introduction to SQL 2000: Installation and Implementation SQL Server Administration suite: course 1 of 4 This class is designed for Beginner SQL/Prophet 21 (CC) Users who are responsible for SQL Administration

More information

Vb Net Tutorial For Beginners Visual Studio 2010 Create Web Service

Vb Net Tutorial For Beginners Visual Studio 2010 Create Web Service Vb Net Tutorial For Beginners Visual Studio 2010 Create Web Service In this article I will explain a tutorial to create a simple Windows Service with sample Net Web Application using Visual Studio 2010

More information

Emmanuel Huna. Employment History

Emmanuel Huna. Employment History Emmanuel Huna http://www.ehuna.org jobs@ehuna.org San Mateo, CA 94402 (877) 598-0468 This version of the resume was updated on Saturday, July 22, 2002. For more detailed and up-to-date information, please

More information

unisys Internet Commerce Enabler Technical Overview imagine it. done. Release 11.1 October

unisys Internet Commerce Enabler Technical Overview imagine it. done. Release 11.1 October unisys imagine it. done. Internet Commerce Enabler Technical Overview Release 11.1 October 2010 7850 2473 004 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information

More information

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p.

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. Acknowledgments p. xxiii Introduction p. xxv Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. 8 Transact-SQL p. 9 SQL

More information

Prof. Dr. Hanspeter Mössenböck Institute for System Software Johannes Kepler University Linz

Prof. Dr. Hanspeter Mössenböck Institute for System Software Johannes Kepler University Linz Overview of.net Prof. Dr. Hanspeter Mössenböck Institute for System Software Johannes Kepler University Linz University of Linz, Institute for System Software, 2004 published under the Microsoft Curriculum

More information

Yoon Joong Kim. Department of computer Engineering Hanbat National University

Yoon Joong Kim. Department of computer Engineering Hanbat National University Yoon Joong Kim Department of computer Engineering Hanbat National University Contents 1. Microsoft.NET History 2. What is Microsoft.NET - Goal/.NET Platform/issues and ideas 3. The Microsoft.NET Framework

More information

Princess Nourah bint Abdulrahman University. Computer Sciences Department

Princess Nourah bint Abdulrahman University. Computer Sciences Department Princess Nourah bint Abdulrahman University Computer Sciences Department 1 And use http://www.w3schools.com/ PHP Part 1 Objectives Introduction to PHP Computer Sciences Department 4 Introduction HTML CSS

More information

Crystal Reports XI Release 2 for Windows

Crystal Reports XI Release 2 for Windows Revision Date: March 14, 2007 Crystal Reports XI Release 2 for Windows Overview Contents This document lists specific platforms and configurations for the Crystal Reports XI Release 2. INTRODUCTION...

More information

INT213. Active Server Pages using Visual Basic Scripting

INT213. Active Server Pages using Visual Basic Scripting INT213 Active Server Pages using Visual Basic Scripting Tim McKenna cs/~tmckenna see standards my background a non-scents environment, please. Trust your pheromones. INT213 Active Server Pages using VBScript

More information

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.)

INTRODUCTION TO.NET. Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) INTRODUCTION TO.NET Domain of.net D.N.A. Architecture One Tier Two Tier Three Tier N-Tier THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In-

More information

Using SQL Server in C#

Using SQL Server in C# University College of Southeast Norway Using SQL Server in C# Hans-Petter Halvorsen, 2016.11.01 with Examples http://home.hit.no/~hansha Table of Contents 1. Introduction...

More information

Instructor Led Training (ILT) Course List

Instructor Led Training (ILT) Course List Java Programming & WebSphere CDT714 Java Overview for Managers...1 day CDT715 Java Programming with IBM s WSAD...5 days CDT740 J2EE Programming with IBM s WSAD (Servlet & JSP)...5 days CDT730 Servlet Programming

More information

Oracle Database Heterogeneous Connectivity User Guide

Oracle Database Heterogeneous Connectivity User Guide Oracle Database Heterogeneous Connectivity User Guide Database Heterogeneous Connectivity User's Guide. Contents This chapter describes the major features provided by Oracle Database gateways. Integrate

More information

OrgPublisher 10 Architecture Overview

OrgPublisher 10 Architecture Overview OrgPublisher 10 Architecture Overview Table of Contents OrgPublisher 10 Architecture Overview Table of Contents OrgPublisher Introduction... 3 Data Sources... 4 OrgPublisher Users... 4... 4 Client PC Requirements...

More information

Review. Fundamentals of Website Development. Web Extensions Server side & Where is your JOB? The Department of Computer Science 11/30/2015

Review. Fundamentals of Website Development. Web Extensions Server side & Where is your JOB? The Department of Computer Science 11/30/2015 Fundamentals of Website Development CSC 2320, Fall 2015 The Department of Computer Science Review Web Extensions Server side & Where is your JOB? 1 In this chapter Dynamic pages programming Database Others

More information

The DCOM Connector HELP.BCMIDDCOM. Release 4.6C

The DCOM Connector HELP.BCMIDDCOM. Release 4.6C HELP.BCMIDDCOM Release 4.6C SAP AG Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express

More information

Crystal Reports XI Release 2 Service Pack 4

Crystal Reports XI Release 2 Service Pack 4 Revision Date: May 7, 2008 Crystal Reports XI Release 2 Service Pack 4 Overview Contents This document lists specific platforms and configurations for Crystal Reports XI Release 2 Service Pack 4. INTRODUCTION...

More information

Dot Net Online Training

Dot Net Online Training chakraitsolutions.com http://chakraitsolutions.com/dotnet-online-training/ Dot Net Online Training DOT NET Online Training CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS: Title : Dot Net

More information

How to Configure Informix Connect and ODBC

How to Configure Informix Connect and ODBC Platform: Informix How to Configure Informix Connect and ODBC James Edmiston Informix DBA Consultant Quest Information Systems, Inc. Session: L7 /3:30 Purpose Identify Informix connectivity products and

More information

Software Elements of Electronic Business Sites

Software Elements of Electronic Business Sites Software Elements of Electronic Business Sites Daniel A. Menascé, Ph. D. www.cs.gmu.edu/faculty/menasce.html 1 Implementation Options Client Server Client-side: client-side scripts Java applets Server-side:

More information

6.1 Understand Relational Database Management Systems

6.1 Understand Relational Database Management Systems L E S S O N 6 6.1 Understand Relational Database Management Systems 6.2 Understand Database Query Methods 6.3 Understand Database Connection Methods MTA Software Fundamentals 6 Test L E S S O N 6. 1 Understand

More information

10/9/2012. Sample C# program:

10/9/2012. Sample C# program: Creating and Running Your First C# Program Text Book : C# Programming From Problem Analysis to Program design, Barbara Doyle Grading : Homeworks 20% Lecture Presentation 20% Final : % 20 Project : 40%

More information

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS)

Crystal Enterprise. Overview. Contents. Web Server Overview - Internet Information System (IIS) Overview Contents This document provides an overview to web server technology particularly Microsoft s Internet Information Server (IIS) and its relationship with. Although this article has been written

More information

Planning and Designing Your Site p. 109 Design Concepts p. 116 Summary p. 118 Defining Your Site p. 119 The Files Panel p. 119 Accessing Your Remote

Planning and Designing Your Site p. 109 Design Concepts p. 116 Summary p. 118 Defining Your Site p. 119 The Files Panel p. 119 Accessing Your Remote Acknowledgments p. xxv Introduction p. xxvii Getting Started with Dreamweaver MX 2004 Is It 2004 Already? p. 3 The Internet p. 4 TCP/IP p. 7 Hypertext Transfer Protocol p. 8 Hypertext Markup Language p.

More information

This web service can be available to any user on the internet regardless of who developed it.

This web service can be available to any user on the internet regardless of who developed it. The.NET strategy Microsoft wanted to make the WWW more vibrant by enabling individual devices, computers, and web services to work altogether intelligently to provide rich solutions to the user. With the

More information

Mastering SOA Challenges more cost-effectively. Bodo Bergmann Senior Software Engineer Ingres Corp.

Mastering SOA Challenges more cost-effectively. Bodo Bergmann Senior Software Engineer Ingres Corp. Mastering SOA Challenges more cost-effectively Bodo Bergmann Senior Software Engineer Ingres Corp. 1 Contents Tell me why? SOA INGRES and SOA SOA Challenges Mastering selected challenges 2 Service-Oriented

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK WEB-TECHNOLOGIES FOR FRONTPAGE USERS WITH BACKEND DATABASES. ROSHANI ADLOK Department

More information

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010

COURSE OUTLINE: OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Name OD10267A Introduction to Web Development with Microsoft Visual Studio 2010 Course Duration 2 Days Course Structure Online Course Overview This course provides knowledge and skills on developing

More information

VB.NET Web : Phone : INTRODUCTION TO NET FRAME WORK

VB.NET Web : Phone : INTRODUCTION TO NET FRAME WORK Web :- Email :- info@aceit.in Phone :- +91 801 803 3055 VB.NET INTRODUCTION TO NET FRAME WORK Basic package for net frame work Structure and basic implementation Advantages Compare with other object oriented

More information

Web Application Performance Testing with MERCURY LOADRUNNER

Web Application Performance Testing with MERCURY LOADRUNNER Web Application Performance Testing with MERCURY LOADRUNNER Course Overview (17 lessons) Introduction...2 1. Introduction...2 Web Application Development - overview and terminology...3 2. Two tiers configuration...3

More information

AN XML-BASED SYSTEM FOR FIXED AND MOBILE DELIVERY OF ELECTRONIC SERVICES

AN XML-BASED SYSTEM FOR FIXED AND MOBILE DELIVERY OF ELECTRONIC SERVICES AN XML-BASED SYSTEM FOR FIXED AND MOBILE DELIVERY OF ELECTRONIC SERVICES G. Z. Qadah Computer Engineering Department American University of Sharjah P.O. Box 26666, Sharjah, UAE W. Al-Zouabi Computer Engineering

More information

IST 220: Application Layer

IST 220: Application Layer IST 220: Layer Abdullah Konak School of Information Sciences and Technology Penn State Berks Learning Objectives. Focus on applications, not the theory how things work. A. Konak IST 220: Ch2- Layer 2 1

More information

Using Data Science to deliver Workforce & Labour Market Insights. Gary Gan Co-Founder, JobKred

Using Data Science to deliver Workforce & Labour Market Insights. Gary Gan Co-Founder, JobKred Using Data Science to deliver Workforce & Labour Market Insights Gary Gan Co-Founder, JobKred Collection of Data Online Sources Skills, Education, Experience AI-powered Career Development Platform Cloud-based

More information

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days

2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days 2310C VB - Developing Web Applications Using Microsoft Visual Studio 2008 Course Number: 2310C Course Length: 5 Days Certification Exam This course will help you prepare for the following Microsoft Certified

More information

Chapter 11 Program Development and Programming Languages

Chapter 11 Program Development and Programming Languages Chapter 11 Program Development and Programming Languages permitted in a license distributed with a certain product or service or otherwise on a password-protected website for classroom use. Programming

More information

Creating Data Driven Websites with Dreamweaver CS4: Using ColdFusion, PHP or ASP

Creating Data Driven Websites with Dreamweaver CS4: Using ColdFusion, PHP or ASP Creating Data Driven Websites with Dreamweaver CS4: Using ColdFusion, PHP or ASP published by Antall Training http://www.scottantall.com info@scottantall.com 440/623-3738 1.0.0 Copyright 2003-2009 Antall

More information

"Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary

Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary Description Course Summary This course provides knowledge and skills on developing Web applications by using Microsoft Visual. Objectives At the end of this course, students will be Explore ASP.NET Web

More information

..to the Berlin BAU Software Lab! Let's have two interesting weeks together! (c)schmiedecke C# and.net

..to the Berlin BAU Software Lab! Let's have two interesting weeks together! (c)schmiedecke C# and.net ..to the Berlin BAU Software Lab! Let's have two interesting weeks together! (c)schmiedecke 13. 1 - C# and.net 2 Ilse Schmiedecke studied Computer Science in (West-)Berlin in the 70-ies married for more

More information

Java Applets, etc. Instructor: Dmitri A. Gusev. Fall Lecture 25, December 5, CS 502: Computers and Communications Technology

Java Applets, etc. Instructor: Dmitri A. Gusev. Fall Lecture 25, December 5, CS 502: Computers and Communications Technology Java Applets, etc. Instructor: Dmitri A. Gusev Fall 2007 CS 502: Computers and Communications Technology Lecture 25, December 5, 2007 CGI (Common Gateway Interface) CGI is a standard for handling forms'

More information

BIS4430 Web-based Information Systems Management. Unit 11 [BIS4430, LU11 version1.0, E.M, 09/07)]

BIS4430 Web-based Information Systems Management. Unit 11 [BIS4430, LU11 version1.0, E.M, 09/07)] SCOPE Context BIS4430 Web-based Information Systems Management Unit 11 [BIS4430, LU11 version1.0, E.M, 09/07)] A fully dynamic e-commerce site must be able to send and retrieve data from the user and some

More information

Crystal Reports Server Embedded 2008 with Service Pack 4 for Windows Supported Platforms

Crystal Reports Server Embedded 2008 with Service Pack 4 for Windows Supported Platforms Crystal Reports Server Embedded 2008 with Service Pack 4 for Windows Supported Platforms Applies to: Crystal Reports Server Embedded 2008 with Service Pack 4. Summary This document contains information

More information

Chapter 10 Web-based Information Systems

Chapter 10 Web-based Information Systems Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 10 Web-based Information Systems Role of the WWW for IS Initial

More information

Getting Started with Visual Studio.NET

Getting Started with Visual Studio.NET V37 Getting Started with Visual Studio.NET Whil Hentzen Hentzenwerke Corp. Who Am I? Hentzenwerke Corp. (17 yrs) Editor, FoxTalk Author (6 books) Publisher, The Essentials for Visual FoxPro Ask me about

More information

Bonus Content. Glossary

Bonus Content. Glossary Bonus Content Glossary ActiveX control: A reusable software component that can be added to an application, reducing development time in the process. ActiveX is a Microsoft technology; ActiveX components

More information

PESIT- Bangalore South Campus Hosur Road (1km Before Electronic city) Bangalore

PESIT- Bangalore South Campus Hosur Road (1km Before Electronic city) Bangalore PESIT- Bangalore South Campus Hosur Road (1km Before Electronic city) Bangalore 560 100 Department of MCA COURSE INFORMATION SHEET Programming Using C#.NET (13MCA53) 1. GENERAL INFORMATION: Academic Year:

More information

ACTIVE MICROSOFT CERTIFICATIONS:

ACTIVE MICROSOFT CERTIFICATIONS: Last Activity Recorded : February 14, 2014 Microsoft Certification ID : 2997927 CHRISTIAN GYSSELS CAIXA POSTAL 22.033 FLORIANOPOLIS, Santa Catarina 88095-971 BR gyssels@dekeract.com *Charter- Certification

More information

Analysis of the Benchmark while Extracting Data from Database or XML File for Different Platforms

Analysis of the Benchmark while Extracting Data from Database or XML File for Different Platforms Analysis of the Benchmark while Extracting Data from Database or XML File for Different Platforms Ognian Nakov, Desislava Petrova Abstract: The purpose of the research is the comparison between the extracting

More information

when your Jaguar is caught in the Web

when your Jaguar is caught in the Web to do when your Jaguar is caught in the Web 8What This chapter covers Internet and web primer How to build web applications using Jaguar CTS An overview of PowerDynamo 193 194 CHAPTER 8 What to do when

More information

Connecting with Computer Science Chapter 5 Review: Chapter Summary:

Connecting with Computer Science Chapter 5 Review: Chapter Summary: Chapter Summary: The Internet has revolutionized the world. The internet is just a giant collection of: WANs and LANs. The internet is not owned by any single person or entity. You connect to the Internet

More information

COPYRIGHTED MATERIAL. Chapter. Designing Data Access MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER:

COPYRIGHTED MATERIAL. Chapter. Designing Data Access MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER: 08800.book Page 1 Thursday, February 22, 2007 10:50 AM Chapter 1 Designing Data Access MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER: Design appropriate data access technologies. Design an appropriate

More information

Windows Database Applications

Windows Database Applications 3-1 Windows Database Applications Chapter 3 In this chapter, you learn to access and display database data on a Windows form. You will follow good OOP principles and perform the database access in a datatier

More information

The integration of the database with Microsoft. NET Framework

The integration of the database with Microsoft. NET Framework The 2nd International Conference on Virtual Learning, ICVL 2007 1 The integration of the database with Microsoft. NET Framework Simona Marilena Ilie 1 (1) Technical University of Civil Engineering of Bucharest,

More information

Manual Asp Net Pdf For Beginning Asp Net 3.5 In Vb 2008

Manual Asp Net Pdf For Beginning Asp Net 3.5 In Vb 2008 Manual Asp Net Pdf For Beginning Asp Net 3.5 In Vb 2008 ASP.NET 3.5 makes creating a dynamic site faster and cleaner than ever Name : Beginning Ajax with ASP.NET NET 3.5 in VB 2008, 2nd Edition Free Ebook.

More information