The integration of the database with Microsoft. NET Framework

Size: px
Start display at page:

Download "The integration of the database with Microsoft. NET Framework"

Transcription

1 The 2nd International Conference on Virtual Learning, ICVL The integration of the database with Microsoft. NET Framework Simona Marilena Ilie 1 (1) Technical University of Civil Engineering of Bucharest, ROMANIA ilie.simona@gmail.com Abstract The Common Language Infrastructure (CLI) describes the executable code and runtime environment that form the core of the Microsoft.Net Framework. The specification defines an environment that allows multiple high-level languages to be used on different computer platforms without being rewritten for specific architectures. Microsoft.Net Framework contains Microsoft's commercial implementation of the CLI for desktop systems, but also encompasses a larger collection of resources, libraries, and tools. Microsoft provides several such languages, including C#, VisualBasic.Net, C++, etc. ADO.NET can be used as a powerful XML middleware. The DataSet objects in ADO.NET can load its data from variant sources: a database server, a local or remote XML file and any accessible system resources. Once the data is loaded, they can be either treated as a record table or a virtual XML document. Keywords: VisualStudio. NET, VisualBasic. NET, ADO.NET, ASP.NET, XML. 1. Introduction The.NET Framework platform tries to offer a substantial framework of the object oriented programming, where the code can be locally executed, "at the distance or with distribution on the internet. An important advantage consists in the automatic management of memory, meaning that destruction the creation of the objects and of the processes aren t the programmer s duty anymore but they are automatically done. Also, the.net platform introduces a set of basis classes, as well as a set of basis types specific for every language from the.net family, that lightens the passing from one programming language to the other or even the use of more languages in one application (the so called cross-language integration ). In the dotnet languages family, Microsoft included VisualBasic. NET, Visual C++ and the new C# (which forms the new package VisualStudio. NET), and other 15 languages, like Java, Perl, Pascal or Cobol. The.NET platform has two main component parts: Common Language Runtime (CLR) and the library of classes. Common Language Runtime (CLR) is an universal execution engine. This allows writing in any language and automatically assures the memory management, the application installation, the creation and the destruction of objects and processes as well as the code security. The second component part is the library of classes, this time completely independent from language, having a XML infrastructure. 1. Definitely and firefly, the advantages of the new NET Framework platform are presented in table no The use of one specific programming language or of another depends on each programmer, the.net platform being portable on almost any programming language, even talking about Pascal. NET or Cobol.NET. As far as the development of web applications is concerned the new platform brings a library of classes, server checking and a new technology of connecting to the database (ADO.NET). Another essential innovation is the disappearance of the interpreted programs, of the so called scriptures and the passing to real programming languages, through the use in ASP of the.net VisualBasic or of C#. Table no 1 - The advantages of the new.net Framework platform

2 The 2nd International Conference on Virtual Learning, ICVL Advantages Significance The same classes and objects are Common set of basis classes available in any.net programming language, thus being introduced a compatibility between all the languages from the.net family. Automatic memory management The memory management is made through CLR, this automatically creating and destroying the objects and the processes. The security of the code access The codes access distributed towards the system files or towards the other protected resources, can be prevented on security levels. Common types system (CTS) A set of types is directly borne by CLR. Using this common set the so called cross-language integration becomes possible, the use of more languages in the same application. Microsoft brings along with its new platform a new technology of access to the database ADO.NET. The objects for the access to the database have been changed, passing to the disconnected model. ADO.NET. gives up to OLEDB and introduces a new technology of access to the database. Instead of the old technology, ADO.NET uses the so called "drivers" (or "managed providers"), which are connected directly to the data basis. ADO.NET can also read and write XML. Web Services allows the integration and interoperability between sites, no matter what technology or operating system are used. This concept will facilitate the portability or the programming distributed on the Internet and through the Internet. XML and SOAP are the main technologies that facilitate this thing. From an architectural point of view,.net includes four fundamental class categories: ASP.NET is the following generation of the Active Server Pages technology, being destined to develop some applications for the Web. A key point of the new version of ASP is the possibility of exposition of the applications functions through the Web services. ADO.NET is the new version of the bookshops set ActiveX Data Object, offering the access to the sources of relational data or other database. The integration with Microsoft.NET Framework SharePoint Portal Server 2003 is substantiated on the basis of Microsoft.NET Framework. The common software frame (.NET Framework) offers the possibility to access the bookshops in a similar way, through any application written in a language compatible with this platform (VB.NET, C#, C++ etc.). Thus, the connections with the database from the achieved Web Parts, will be administered easier through the object collection ADO.NET (ActiveX Data Object). ADO.NET offers a higher flexibility in developing the applications for the Internet, using the XML standard for the data transfer. The Web services offer special possibilities of integration with different applications, the barriers concerning the platform being eliminated. Among the elements of the Web Part type, they can use the Web services and the support for XML, in this way, a higher level of interoperability being offered. Another important thing about the.net applications is the high level of using the code again, this causing the reduction of the time necessary for the development of specialized components destined to the SharePoint portal. 2. ADO.NET and database ADO NET starts with a pattern in which the user opens a connection, executes the desired operations (data selection, data modification), then closes the connection.

3 The 2nd International Conference on Virtual Learning, ICVL Strategies: -Stocking data in the memory, in a DataSet object (kept in the memory, an object one can work with, even after disconnecting from the data source). This strategy involves creating an object, such as DataAdapter, which helps to get the data from the source. In the end, the data can be written in the database, using also a DataAdapter object. Advantages: the possibility to work with a lot of tables simultaneously; manipulating the data from a lot of data sources simultaneously (from different database, XML files, etc); facilitating the data exchange with other applications (components) through XML; easy binding to different controls (data-binding); using the data without the reinterrogation of the database; the possibility of engendering some classes which represent the structure of the DataSet. The objects defined in this way make the work with the data extremely easy. This strategy is more appropriate for the applications such as the desktop (in the client-server architectures), when people work repeatedly with the same data or when they work with the architecture "data-binding", which is conceived to work with DataSets. - Executing the operations directly in the database. For this, people use an object of the type Command. If the object Command returns data (SELECT...), they can be stocked in an object of the type DataReader. Advantages: - the possibility of executing the commands SQL of the type DDL; - reduced overhead (the objects of the type DataSet use a lot of memory); - productivity at programming. This strategy is appropriate for web applications or in case the selected data is used only once (reports, etc.). Data Transformation Services (DTS). This component from SQL Server 2000 allows import, export and transforming the existing data into various database. With its help, people can establish the connection to any data source using the technologies ADO.NET, ADO, OLE DB or ODBC. People can access the relational database, the text files, Excel, Access, Fox Pro. DTS allows transforming the data and populating the data deposit. 3. The new technology web ASP.NET ASP gave up definitively at the "scripts" (interpreted programmes), once ASP.NET appeared, the transition to the concept of compiled pages was made. The code can be written using any of the programming languages from the family dotnet. The compilation of the page is made at its first rolling, the result of the compilation being stocked separately. A new compilation of the code takes place only when the respective page has been changed. Another news is that ASP.NET uses the.net platform, which means the access to its class bookshop, that contains some objects very useful to the developers of web applications. 2): Briefly, the main advantages of the new ASP.NET are presented in the following scheme (table no. Through truly compiled active pages, the pseudo-languages are eliminated (the "scripts") and through the access to the real languages of communication and the engine CLR, the code will roll much faster. Thus, people can navigate visibly faster. Through some code files, the object code was separated from the graphic interface in distinct files. ASP.NET brings the new concepts of web forms and server controls. The web forms and server controls

4 The 2nd International Conference on Virtual Learning, ICVL are in ASP.NET objects included in the.net bookshop and they allow the programmers to write the code in a manner guided by the event, similar with the forms and Windows controls. On the ASP.NET forms they can attach server controls similar with the classic controls from Windows and then, using a chosen language, they write the programme using standard events such as OnClick, OnFocus etc. The new server controls from ASP.NET are not HTML tags anymore, but programmable objects, but, though, in the aspx file (on the server) they are really objects, in the navigator they are transformed into the old "input" tags. The real advantage that the new controls bring is the fact that they maintain the values between several successive connections. Thus, it is not necessary anymore to resend the values of the fields in a form the navigator to the server. ADVANTAGES ASP compiled Code files No cookies Web forms and server controls ADO.NET Web services Table no.2. The main advantages of ASP.NET Significance Using the languages VisualBasic.NET and C# instead of the interpreted programmes (scripts) makes the code to roll much faster. Now, it is possible to separate the interface from the logical code in two different files, even allowing the code compilation. The variables stocked in the Session object can be transmitted now to the navigator, without using the controversial cookies. The programmers can write now the code in a manner guided by events, similar with the forms and Windows controls. The access objects to the database have been changed and the paradigm used now is, to a certain extent, that of the discontinuous pattern. Having XML native, ASP.NET allows now the fast creation of accessible components from the distance through HTTP, XML and SOAP. Through truly compiled active pages, the pseudo-languages are eliminated (the "scripts") and through the access to the real languages of communication and the engine CLR, the code will roll much faster. Thus, people can navigate visibly faster. Through some code files, the object code was separated from the graphic interface in distinct files. ASP.NET brings the new concepts of web forms and server controls. The web forms and server controls are in ASP.NET objects included in the.net bookshop and they allow the programmers to write the code in a manner guided by the event, similar with the forms and Windows controls. On the ASP.NET forms they can attach server controls similar with the classic controls from Windows and then, using a chosen language, they write the programme using standard events such as OnClick, OnFocus etc. The new server controls from ASP.NET are not HTML tags anymore, but programmable objects, but, though, in the aspx file (on the server) they are really objects, in the navigator they are transformed into the old "input" tags. The real advantage that the new controls bring is the fact that they maintain the values between several successive connections. Thus, it is not necessary anymore to resend the values of

5 The 2nd International Conference on Virtual Learning, ICVL the fields in a form the navigator to the server. This is only a part of the news brought by Microsoft, but the main idea is that ASP.NET uses to the full the advantages of the new platform.net Framework and the engine CLR (Common Language Runtime), as memory management and security. The logical code of the ASP pages is now separated from HTML, in a distinct file, and compiled in what Microsoft calls "assemblies", which offer a higher speed of execution and the power of the "true" languages of programming. ASP.NET offers the implementation of the Web Services concept, through the inclusion of some technologies such as XML or SOAP. They facilitate the transfer of the data on any platform, operating system or language. The code will be written in the same way, but the compiled result is distributed through the Internet, no matter if it uses a home PC, a laptop, a cell phone or PDA. 4. The use of XML for integration in the heterogeneous mediums XML(eXtended Markup Language) is the centre of several new technologies, representing the language of the new informational era. The scripting languages rolled on part of the server (ASP and its successor ASP.Net; PHP;JSP etc.), are already mature technologies, which offer the possibility to develop some complex applications destined to the Web. The creation of a universal language which can be understood by all this diverse equipment, has become an imperious necessity. XML is the answer to these solicitations, representing a new step in the evolution of the informational era and facilitating the data exchange between diverse equipments. XML or extended Markup Language is in fact the brother of HTML language (HyperText Markup Language), and there is a series of similarities, but also fundamental differences between the two languages. First of all, both of them have a common origin represented by SGML (Standard Generalized Markup Language), this one being a general language, which offers the users the possibility to organize their documents and data in an electronic format. Unlike HTML, XML language offers the user the possibility to build his own set of labels which is going to be used in formatting the respective document. Thus, a special flexibility is offered, this element being necessary to define the specialized electronic documents. SGML is very complex, being very difficult to use on a large scale and that is why they created a simplified system represented by XML. HTML defines the way of displaying the information, emphasizing their form and aspect. Unlike this one, XML deals with the way to define and stock the information, being destined particularly to organize the electronic data. HTML will be destined to build the Web pages, but XML is the technology which will facilitate the information exchange from the database. The particular way in which the information from the XML file will be displayed in the browser, can be done using the XSL style papers. The style papers have a similar role with the declarations of formatting from the CSS files (Cascading Style Sheet). In this way, they can establish a table like structure of displaying the data, the colours and fonts to format the information and also other elements of formatting the data from the XML file. Though, despite adopting XML on a large scale, the efficient development of the goods transaction is in danger because of the viruses and all the advantages derived from the simplicity and rapidity of this XML protocol can be annulled by its instability and bad security. The firewall XWall solution already offers protection against the attacks through XML, it is conformable to WS-I Profile, assures WSDL Access Control and XML Schema Restriction. 4.1 XML and the database: XML represents the easiest and also the most efficient way to transfer the data through the Internet. XML is a kind of container in which the information from the database is stocked and distributed

6 The 2nd International Conference on Virtual Learning, ICVL through the Internet, assuring that the data stocked in these files will be accessible for any device and on any platform. XML in comparison with other means of transferring the data, has the advantage of simplicity, of efficient organization of information and also of transferring the information on any platform or device. The last versions of the administration systems of the well-known client-server database (Oracle, SQL Server or IBM DB2) have integrated the support for XML technology, thus the users having the opportunity to do these operations very easily with the help of some supplementary parameters to the SQL instructions. SQL server is a system of relational database client-server, having SQL language as support in database exploitation. Essentially, this architecture needs a central database on a server, which is accessed by many clients at the same time. These clients connect as users in the local network or as users of the Internet. The consultation and updating of the database through the Internet needs some applications which will be rolled in the Web browser and will be interconnected with the data basis through some ASP scriptures or XML technology. The access of the Internet users also implies the collaboration between the database server and the Web server (for instance, Microsoft Internet Information Server), the two components working in tandem to fulfill the demands of the Internet users The conversion of the documents The conversion of the documents represents one of the key activities of the econtent Solutions division. It is about the conversion of the documents on paper support or different customary electronic formats in the process of creating the documents (Word, PDF, Quark, FrameMaker, etc) towards "intelligent" organized formats (XML, SGML) or towards formats used for publishing on the Internet and for electronic books (HTML, lit, OeB, Adobe ebook Reader, etc.). Being organized, the content can be introduced in the systems of documents management or intelligent archives, always having the opportunity of securized distribution on multiple supports: Internet, CD-ROM, database, wireless devices. 5. Conclusions The new Microsoft technology facilitates the real "portability" of applications and languages for programming because since now, people can talk about distributed applications and cross-language applications. The platform also introduces a new technology of access to the database - ADO.NET. The objects for the access to the database have been changed. ADO.NET gives up OLEDB and introduces a new technology of access to the database, passing to the pattern "disconnected" (no connexion). Instead of the old technology, ADO.NET uses the so called "drivers" (or "managed providers"), which are connected directly to the data basis. ADO.NET can also read and write XML. Web Services allows the integration and interoperability between sites, no matter what technology or operating system are used. XML is a central element of several mediums of development for the applications or administration systems of the database. It functions on any platform, it is well supported and it doesn't need a licence. It is modular, it allows defining a new document format combining and using other formats again. XML standard represents the ideal solution for archive and document management. It facilitates the use, exchange and efficient exploitation of the information (index, intelligent search), allows the term reduction and the publishing costs - a unique investment that does not require supplementary costs. The transaction solution supported by XML replaces successfully the expensive methods based on the proprietor code which assured the transaction connection between two or more companies. ASP.NET offers the implementation of the Web Services concept, through the inclusion of some technologies such as XML or SOAP. They facilitate the transfer of the data on any platform, operating system or language. The code will be written in the same way, but the compiled result is distributed through the Internet, no matter if it uses a home PC, a laptop, a cell phone or PDA.

7 The 2nd International Conference on Virtual Learning, ICVL References: [1] Developing Microsoft ASP.NET Web Applications Using Visual Studio.NET, Microsoft, U.S.A., 2002; [2] Developing XML Web Services Using Microsoft ASP.NET, Microsoft, U.S.A., 2002; [3] Programming with Microsoft ADO.NET, Microsoft, U.S.A., 2002; [4] [5] [6] [7] [8] [9]

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

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

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

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

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

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

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 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

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

SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM ( )

SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM ( ) SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM (2013-2014) MODULE: C# PROGRAMMING CHAPTER 1: INTRODUCING.NET AND C# 1.1 INTRODUCTION TO LANGUAGES C++ C# DIFFERENCES BETWEEN

More information

AUTHENTICATED WEB MANAGEMENT SYSTEM

AUTHENTICATED WEB MANAGEMENT SYSTEM AUTHENTICATED WEB MANAGEMENT SYSTEM Masters Project Report (CPEG 597) December 2005 Submitted to Prof. Ausif Mahmood ID. 655795 By Kavya P Basa 1 Abstract In an era where web development is taking priority

More information

Architecting a Network-Centric M&S Application

Architecting a Network-Centric M&S Application Introduction to Modeling and Simulation Architecting a Network-Centric M&S Application OSMAN BALCI Professor Department of Computer Science Virginia Polytechnic Institute and State University (Virginia

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

.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

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

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

Course ID: 2310C Course Name: Developing Web Applications Using Microsoft Visual Studio 2008

Course ID: 2310C Course Name: Developing Web Applications Using Microsoft Visual Studio 2008 Course ID: 2310C Course Name: Developing Web Applications Using Microsoft Visual Studio 2008 Audience This course is intended for introductory-level Web developers who have knowledge of Hypertext Markup

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

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

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

M4.1-R4: APPLICATION OF.NET TECHNOLOGY

M4.1-R4: APPLICATION OF.NET TECHNOLOGY M4.1-R4: APPLICATION OF.NET TECHNOLOGY NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the OMR

More information

ASP.NET Web Forms Programming Using Visual Basic.NET

ASP.NET Web Forms Programming Using Visual Basic.NET ASP.NET Web Forms Programming Using Visual Basic.NET Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

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

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

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

C# Programming: From Problem Analysis to Program Design 2nd Edition. David McDonald, Ph.D. Director of Emerging Technologies. Objectives (1 of 2)

C# Programming: From Problem Analysis to Program Design 2nd Edition. David McDonald, Ph.D. Director of Emerging Technologies. Objectives (1 of 2) 13 Database Using Access ADO.NET C# Programming: From Problem Analysis to Program Design 2nd Edition David McDonald, Ph.D. Director of Emerging Technologies Objectives (1 of 2) Retrieve and display data

More information

The Adobe XML Architecture

The Adobe XML Architecture TECHNOLOGY BRIEF The Adobe XML Architecture Introduction As enterprises struggle to balance the need to respond to continually changing business priorities against ever-shrinking budgets, IT managers are

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

Microsoft.NET: The Overview

Microsoft.NET: The Overview 2975ch01.qxd 01/03/02 10:55 AM Page 1 Part I Microsoft.NET: The Overview Chapter 1: Chapter 2: What Is.NET? Microsoft s End-to-End Mobile Strategy COPYRIGHTED MATERIAL 2975ch01.qxd 01/03/02 10:55 AM Page

More information

Web-centric Computing 2008: 1.What is computing? 1.What is computing? CSCI 3172 Fall Computing, Hypertext, & the WWW

Web-centric Computing 2008: 1.What is computing? 1.What is computing? CSCI 3172 Fall Computing, Hypertext, & the WWW Web-centric Computing 2008: Computing, Hypertext, & the WWW 1.What is computing? Use of computers Computers interact with memory & devices (e.g. displays) Computers follow instructions to manipulate data

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

Programming the World Wide Web by Robert W. Sebesta

Programming the World Wide Web by Robert W. Sebesta Programming the World Wide Web by Robert W. Sebesta Tired Of Rpg/400, Jcl And The Like? Heres A Ticket Out Programming the World Wide Web by Robert Sebesta provides students with a comprehensive introduction

More information

Sales Management Portal

Sales Management Portal Governors State University OPUS Open Portal to University Scholarship All Capstone Projects Student Capstone Projects Fall 2016 Sales Management Portal Sai Shireesha Kacharla Governors State University

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

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

What we need. Agenda. What s J2EE. Challenges of Enterprise Application Development

What we need. Agenda. What s J2EE. Challenges of Enterprise Application Development Agenda.NET versus J2EE Felicia cheng Jarred zheng Jonathan Card Peng Li iao he Background Introduction J2EE Structure.NET Structure J2EE vs..net Conclusions Today s Enterprise Environment Challenges of

More information

Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks)

Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks) Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks) Introduction of.net Framework CLR (Common Language Run

More information

IT6503 WEB PROGRAMMING. Unit-I

IT6503 WEB PROGRAMMING. Unit-I Department of Information Technology Question Bank- Odd Semester 2015-2016 IT6503 WEB PROGRAMMING Unit-I SCRIPTING 1. What is HTML? Write the format of HTML program. 2. Differentiate HTML and XHTML. 3.

More information

Study on XML-based Heterogeneous Agriculture Database Sharing Platform

Study on XML-based Heterogeneous Agriculture Database Sharing Platform Study on XML-based Heterogeneous Agriculture Database Sharing Platform Qiulan Wu, Yongxiang Sun, Xiaoxia Yang, Yong Liang,Xia Geng School of Information Science and Engineering, Shandong Agricultural University,

More information

BEAWebLogic. Portal. Overview

BEAWebLogic. Portal. Overview BEAWebLogic Portal Overview Version 10.2 Revised: February 2008 Contents About the BEA WebLogic Portal Documentation Introduction to WebLogic Portal Portal Concepts.........................................................2-2

More information

DEPARTMENT OF INFORMATION TECHNOLOGY Academic Year 2015-2016 QUESTION BANK-EVEN SEMESTER NAME OF THE SUBJECT SUBJECT CODE SEMESTER YEAR DEPARTMENT C# and.net Programming CS6001 VI III IT UNIT 1 PART A

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

Definition of DATABASE : a usually large collection of data organized especially for rapid search and retrieval (as by a computer)

Definition of DATABASE : a usually large collection of data organized especially for rapid search and retrieval (as by a computer) What is a Database? da ta base noun \dā-tə-bās, da- also dä-\ Definition of DATABASE : a usually large collection of data organized especially for rapid search and retrieval (as by a computer) Components

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

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio Course Overview: This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2010. Prerequisites Before attending this course, students

More information

Mobile MOUSe ADO.NET FOR DEVELOPERS PART 1 ONLINE COURSE OUTLINE

Mobile MOUSe ADO.NET FOR DEVELOPERS PART 1 ONLINE COURSE OUTLINE Mobile MOUSe ADO.NET FOR DEVELOPERS PART 1 ONLINE COURSE OUTLINE COURSE TITLE ADO.NET FOR DEVELOPERS PART 1 COURSE DURATION 14 Hour(s) of Interactive Training COURSE OVERVIEW ADO.NET is Microsoft's latest

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

DOT NET SYLLABUS FOR 6 MONTHS

DOT NET SYLLABUS FOR 6 MONTHS DOT NET SYLLABUS FOR 6 MONTHS 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

More information

EXAM Web Development Fundamentals. Buy Full Product.

EXAM Web Development Fundamentals. Buy Full Product. Microsoft EXAM - 98-363 Web Development Fundamentals Buy Full Product http://www.examskey.com/98-363.html Examskey Microsoft 98-363 exam demo product is here for you to test the quality of the product.

More information

Technologies Movicon 11 Movicon.NExT. Files XML (with encryption). Proprietary Information Model

Technologies Movicon 11 Movicon.NExT. Files XML (with encryption). Proprietary Information Model The choice of using Movicon 11 rather than Movicon.NExT depends on the kind of application you wish to install in your company based on the company s size. Fundamentally, this would also depend on the

More information

SOLVING PROBLEMS ON THE TEACHING METHODS OF LINEAR ALGEBRA THROUGH TECHNOLOGY PLATFORM DOT.NET

SOLVING PROBLEMS ON THE TEACHING METHODS OF LINEAR ALGEBRA THROUGH TECHNOLOGY PLATFORM DOT.NET SOLVING PROBLEMS ON THE TEACHING METHODS OF LINEAR ALGEBRA THROUGH TECHNOLOGY PLATFORM DOT.NET Makpal Iskakova, PhD Yernar Adilbekov, Undergraduate Kazakh National Pedagogical University named after Abai,

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

Mitchell Bosecke, Greg Burlet, David Dietrich, Peter Lorimer, Robin Miller

Mitchell Bosecke, Greg Burlet, David Dietrich, Peter Lorimer, Robin Miller Mitchell Bosecke, Greg Burlet, David Dietrich, Peter Lorimer, Robin Miller 0 Introduction 0 ASP.NET 0 Web Services and Communication 0 Microsoft Visual Studio 2010 0 Mono 0 Support and Usage Metrics .NET

More information

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

4. กก ( Web-based Technology ) (System Development Life Cycle : SDLC) ก ก ก 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)

More information

ASP.NET- Enterprise Applications

ASP.NET- Enterprise Applications COURSE SYLLABUS ASP.NET- Enterprise Applications Industrial Training (3 MONTHS) PH: 0481 2411122, 09495112288 E-Mail: info@faithinfosys.com Marette Tower Near No.1 Pvt. Bus Stand Vazhoor Road Changanacherry-01

More information

Computational Web Portals. Tomasz Haupt Mississippi State University

Computational Web Portals. Tomasz Haupt Mississippi State University Computational Web Portals Tomasz Haupt Mississippi State University What is a portal? Is it a web page? There is something going on behind the scene! Synopsis URL TCP/IP SSL HTTP HTTPS PKI Kerberos HTML

More information

Introduction to Information Systems

Introduction to Information Systems Table of Contents 1... 2 1.1 Introduction... 2 1.2 Architecture of Information systems... 2 1.3 Classification of Data Models... 4 1.4 Relational Data Model (Overview)... 8 1.5 Conclusion... 12 1 1.1 Introduction

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

XML: the document format of the future?

XML: the document format of the future? Arco User Conference 99 XML: the document format of the future? Hans C. Arents senior IT market analyst I.T. Works Guiding the IT Professional Innovation Center, Technologiepark 3, B-9052 Gent (Belgium),

More information

Create a Windows Application that Reads- Writes PI Data via PI OLEDB. Page 1

Create a Windows Application that Reads- Writes PI Data via PI OLEDB. Page 1 Create a Windows Application that Reads- Writes PI Data via PI OLEDB Page 1 1.1 Create a Windows Application that Reads-Writes PI Data via PI OLEDB 1.1.1 Description The goal of this lab is to learn how

More information

XML Applications. Introduction Jaana Holvikivi 1

XML Applications. Introduction Jaana Holvikivi 1 XML Applications Introduction 1.4.2009 Jaana Holvikivi 1 Outline XML standards Application areas 1.4.2009 Jaana Holvikivi 2 Basic XML standards XML a meta language for the creation of languages to define

More information

UNIT 1 PART A PART B

UNIT 1 PART A PART B UNIT 1 PART A 1. List some of the new features that are unique to c# language? 2. State few words about the two important entities of.net frame work 3. What is.net? Name any 4 applications that are supported

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

More information

.NET 4.6 MICROSOFT CURRICULUM MICROSOFT.NET 2015 (4.6)

.NET 4.6 MICROSOFT CURRICULUM MICROSOFT.NET 2015 (4.6) MICROSOFT.NET 4.6 CURRICULUM MICROSOFT.NET 2015 (4.6) Introduction of Dot Net Framework What is Dot Net? Why Dot Net? Advantages of Dot Net Component of Dot Net What is FCL? What is Framework? Creating

More information

Mobile MOUSe ASP.NET FOR DEVELOPERS PART 1 ONLINE COURSE OUTLINE

Mobile MOUSe ASP.NET FOR DEVELOPERS PART 1 ONLINE COURSE OUTLINE Mobile MOUSe ASP.NET FOR DEVELOPERS PART 1 ONLINE COURSE OUTLINE COURSE TITLE ASP.NET FOR DEVELOPERS PART 1 COURSE DURATION 18 Hour(s) of Interactive Training COURSE OVERVIEW ASP.NET is Microsoft s development

More information

Web Applications Development

Web Applications Development Unit 35: Web Applications Development Unit code: K/601/1510 QCF Level 5: BTEC Higher National Credit value: 15 Aim To enable learners to understand the concepts of web applications and apply the skills

More information

B Nagaraju

B Nagaraju Agenda What to expect in this session Complete ADO.NET Support available in.net Clear Conceptual View Supported by Demos Understand 3 generations of DataAccess.NET Around 9 minutes of videos Free Stuff

More information

Entry Level Assessment Blueprint Web Design

Entry Level Assessment Blueprint Web Design Blueprint Web Design Test Code: 3750 / Version: 01 Specific Competencies and Skills Tested in this Assessment: Internet Basics Describe the process of information exchange between web server and client

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

THE BCS PROFESSIONAL EXAMINATIONS BCS Level 5 Diploma in IT PRINCIPLES OF INTERNET TECHNOLOGIES. Specimen Answers

THE BCS PROFESSIONAL EXAMINATIONS BCS Level 5 Diploma in IT PRINCIPLES OF INTERNET TECHNOLOGIES. Specimen Answers THE BCS PROFESSIONAL EXAMINATIONS BCS Level 5 Diploma in IT PRINCIPLES OF INTERNET TECHNOLOGIES Specimen Answers Question 1 DOM Document Object Model CSS Cascading Style Sheets XSL extensible Stylesheet

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

Design and Implementation of File Sharing Server

Design and Implementation of File Sharing Server Design and Implementation of File Sharing Server Firas Abdullah Thweny Al-Saedi #1, Zaianb Dheya a Al-Taweel *2 # 1,2 Computer Engineering Department, Al-Nahrain University, Baghdad, Iraq Abstract this

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

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 9 Web Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives - 1 Explain the functions of the server and the client in Web programming Create a Web

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

Developing Web Applications Using Microsoft Visual Studio 2008 SP1

Developing Web Applications Using Microsoft Visual Studio 2008 SP1 Developing Web s Using Microsoft Visual Studio 2008 SP1 Introduction This five day instructor led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2008

More information

WEB APPLICATION MANAGEMENT: IMPLEMENTING A DYNAMIC DATABASE UPGRADE MODEL

WEB APPLICATION MANAGEMENT: IMPLEMENTING A DYNAMIC DATABASE UPGRADE MODEL WEB APPLICATION MANAGEMENT: IMPLEMENTING A DYNAMIC DATABASE UPGRADE MODEL Richard Wilson 1 & Daniel Lowes 2 1 Dept. of Computer Science and Software Engineering, University of Melbourne (Australia) 2 Dept.

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

AJAX Programming Overview. Introduction. Overview

AJAX Programming Overview. Introduction. Overview AJAX Programming Overview Introduction Overview In the world of Web programming, AJAX stands for Asynchronous JavaScript and XML, which is a technique for developing more efficient interactive Web applications.

More information

ADO.NET Overview. Connected Architecture. SqlConnection, SqlCommand, DataReader class. Disconnected Architecture

ADO.NET Overview. Connected Architecture. SqlConnection, SqlCommand, DataReader class. Disconnected Architecture Topics Data is Everywhere ADO.NET Overview Connected Architecture EEE-474 DATABASE PROGRAMMİNG FOR İNTERNET INTRODUCTION TO ADO.NET Mustafa Öztoprak-2013514055 ASSOC.PROF.DR. TURGAY İBRİKÇİ ÇUKUROVA UNİVERSTY

More information

Oracle Forms Modernization Through Automated Migration. A Technical Overview

Oracle Forms Modernization Through Automated Migration. A Technical Overview Oracle Forms Modernization Through Automated Migration A Technical Overview Table of Contents Document Overview... 3 Oracle Forms Modernization... 3 Benefits of Using an Automated Conversion Tool... 3

More information

Exploring.Net Orcas. Contents. By Punit Ganshani

Exploring.Net Orcas. Contents. By Punit Ganshani Exploring.Net Orcas By Punit Ganshani Punit Ganshani, employed by Cognizant Technology Solutions India Pvt. Ltd (NASDAQ: CTSH), a global IT services provider headquartered in Teaneck, N.J., is an author

More information

Microsoft..NET Framework. Overview

Microsoft..NET Framework. Overview Microsoft.NET Framework Overview .NET Enterprise Vision Users Any device, Any place, Any time XML Web Services Scheduling Authentication Integrate business applications and processes Notification Back

More information

Developing corporate mobile applications. An alternative approach to native development

Developing corporate mobile applications. An alternative approach to native development Developing corporate mobile applications An alternative approach to native development SUN J2ME Code Camp Paris, November 5th, 2001 Franck Lefèvre Franck.lefevre@DigitalAirways.com 2 The problem with developing

More information

KINGS COLLEGE OF ENGINEERING 1

KINGS COLLEGE OF ENGINEERING 1 KINGS COLLEGE OF ENGINEERING Department of Computer Science & Engineering Academic Year 2011 2012(Odd Semester) QUESTION BANK Subject Code/Name: CS1401-Internet Computing Year/Sem : IV / VII UNIT I FUNDAMENTALS

More information

Data-Driven Services With Silverlight 2: Data Access And Web Services For Rich Internet Applications By John Papa

Data-Driven Services With Silverlight 2: Data Access And Web Services For Rich Internet Applications By John Papa Data-Driven Services With Silverlight 2: Data Access And Web Services For Rich Internet Applications By John Papa Rich Internet Applications Resource at like2do.com Learn the facts Adobe Flash, JavaFX,

More information

DOWNLOAD OR READ : WINDOWS SERVER ADMINISTRATION FUNDAMENTALS LESSON 2 ANSWERS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : WINDOWS SERVER ADMINISTRATION FUNDAMENTALS LESSON 2 ANSWERS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : WINDOWS SERVER ADMINISTRATION FUNDAMENTALS LESSON 2 ANSWERS PDF EBOOK EPUB MOBI Page 1 Page 2 windows server administration fundamentals lesson 2 answers windows server administration

More information

.NET FRAMEWORK. Visual C#.Net

.NET FRAMEWORK. Visual C#.Net .NET FRAMEWORK Intro to.net Platform for the.net Drawbacks of Current Trend Advantages/Disadvantages of Before.Net Features of.net.net Framework Net Framework BCL & CLR, CTS, MSIL, & Other Tools Security

More information

STARCOUNTER. Technical Overview

STARCOUNTER. Technical Overview STARCOUNTER Technical Overview Summary 3 Introduction 4 Scope 5 Audience 5 Prerequisite Knowledge 5 Virtual Machine Database Management System 6 Weaver 7 Shared Memory 8 Atomicity 8 Consistency 9 Isolation

More information

BUILDING APPLICATIONS USING C# AND.NET FRAMEWORK (OBJECT-ORIENTED PROGRAMMING, X428.6)

BUILDING APPLICATIONS USING C# AND.NET FRAMEWORK (OBJECT-ORIENTED PROGRAMMING, X428.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Class 7 Professional Program: Data Administration and Management BUILDING APPLICATIONS USING C# AND.NET FRAMEWORK (OBJECT-ORIENTED

More information

M Developing Microsoft ASP.NET Web Applications Using Visual Studio.NET 5 Day Course

M Developing Microsoft ASP.NET Web Applications Using Visual Studio.NET 5 Day Course Module 1: Overview of the Microsoft.NET Framework This module introduces the conceptual framework of the.net Framework and ASP.NET. Introduction to the.net Framework Overview of ASP.NET Overview of the

More information

Creating a Service Platform for.net. Clement Escoffier PhD Student University of Grenoble

Creating a Service Platform for.net. Clement Escoffier PhD Student University of Grenoble Creating a Service Platform for.net Clement Escoffier PhD Student University of Grenoble LSR-IMAG : Logiciels, Systèmes & Réseaux LSR : Software, Systems & Networks IMAG federation Member of the ObjectWeb

More information

Introduction to Web Concepts & Technologies

Introduction to Web Concepts & Technologies Introduction to Web Concepts & Technologies What to Expect This is an introduction to a very broad topic This should give you a sense of what you will learn in this course Try to figure out what you want

More information

Etanova Enterprise Solutions

Etanova Enterprise Solutions Etanova Enterprise Solutions Front End Development» 2018-09-23 http://www.etanova.com/technologies/front-end-development Contents HTML 5... 6 Rich Internet Applications... 6 Web Browser Hardware Acceleration...

More information

MapInfo Technology Update. Håkan Karlsson Systems Engineer Nordic & Baltic Region

MapInfo Technology Update. Håkan Karlsson Systems Engineer Nordic & Baltic Region MapInfo Technology Update Håkan Karlsson Systems Engineer Nordic & Baltic Region Agenda Software product overview - Applications - Developer Platforms New.NET Platform - MapXtreme 2004 - Future direction

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING SHRI ANGALAMMAN COLLEGE OF ENGINEERING & TECHNOLOGY (An ISO 9001:2008 Certified Institution) SIRUGANOOR,TRICHY-621105. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year/Sem: IV / VII CS1401 INTERNET

More information

Webomania Solutions Pvt. Ltd. 2017

Webomania Solutions Pvt. Ltd. 2017 There are different types of Websites. To understand the types, one need to understand what is a website? What is a Website? A website is an online HTML Document, accessible publicly and it contains certain

More information

Modern Systems Analysis and Design Sixth Edition. Jeffrey A. Hoffer Joey F. George Joseph S. Valacich

Modern Systems Analysis and Design Sixth Edition. Jeffrey A. Hoffer Joey F. George Joseph S. Valacich Modern Systems Analysis and Design Sixth Edition Jeffrey A. Hoffer Joey F. George Joseph S. Valacich Designing Distributed and Internet Systems Learning Objectives Define the key terms client/server architecture,

More information

JavaScript Context. INFO/CSE 100, Spring 2005 Fluency in Information Technology.

JavaScript Context. INFO/CSE 100, Spring 2005 Fluency in Information Technology. JavaScript Context INFO/CSE 100, Spring 2005 Fluency in Information Technology http://www.cs.washington.edu/100 fit100-17-context 2005 University of Washington 1 References Readings and References» Wikipedia

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