ISSN: (Online) Volume 4, Issue 4, April 2016 International Journal of Advance Research in Computer Science and Management Studies

Size: px
Start display at page:

Download "ISSN: (Online) Volume 4, Issue 4, April 2016 International Journal of Advance Research in Computer Science and Management Studies"

Transcription

1 ISSN: (Online) Volume 4, Issue 4, April 2016 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online at: Development of Online Shopping System using ASP.NET Technology and Microsoft SQL Pulakesh Roy 1 Department of Electronics and Communication Engineering UIT, Burdwan University, Burdwan, India Burdwan, West Bengal India Dibyendu Roy 2 Department of Metallurgical and Materials Engineering Indian Institute of Technology Kharagpur, India Burdwan, West Bengal India Abstract: Firstly a customer have to made an user id then one have to sign in the home page using the personal user id and password. Then the options will come in a page for the selection of materials and there cost. Then one has to order the required material as well as to give the appropriate postal address and the personal details. Then the confirmation of the order will be made and a cash memo will generate having unique id number. Now the bill details can be generated and previous records can also be checked out. The up gradation, deletation can also be done. Keywords: Framework Class Library; Common Language Runtime; CSS; JavaScript;.NET Framework; DateTimeOffset. I. INTRODUCTION With the development of science and technology, the information system has become necessary in our daily life. According to the speed of user response, QOS and the performance of database system we determine the vitality of the information system. With the going of time, the performance of SQL server database system degrades, and its response time increases. Optimization of the database system plays a very important role, and it runs through the entire life cycle of the database system. SQL is mainly used to communicate with the database. SQL statements are mainly used to perform the tasks such as update the data on a database, or to retrieve the data from a database etc [1, 2]. Advantages of SQL:- SQL is used to execute queries against the database. SQL can be used to retrieve data from the database. SQL is used to insert the records into the database. SQL can be used to update the records in the database. DOT NET Framework: - The.NET Framework which is pronounced as DOT NET is a partially open source freeware software for framework developed by Microsoft that is primarily runs on Microsoft Windows..NET Framework includes a large class library which is known as the Framework Class Library (FCL) and across the several programming languages it provides language interoperability. Programs which written for the.net Framework execute in a software environment, which is known as the Common Language Runtime (CLR) [3], which is basically an application virtual machine that provides the services such as the security system, management of memory, and handling the exception. ASP DOT NET: - ASP stands for Active Server Pages which is a Technology of Microsoft. Basically for the Web service applications, Microsoft provides a newest version of ASP support called ASP.NET. ASP is a program that runs inside IIS where the IIS stands for Internet Information Services which is a free component with Windows It is also a part of the Windows NT 4.0 Option Pack where the Windows NT 4.0 Option Pack can be easily downloaded from the Microsoft. The Option Pack PWS is a smaller but fully the functional version of IIS. 2016, IJARCSMS All Rights Reserved 60 P a g e

2 II. RDBMS RDBMS stands for the Relational Database Management System which is the basis of SQL, and all the modern database systems such as the MS SQL Server, IBM DB2, Oracle, MySQL and the Microsoft Access etc [5, 6]. Database Tables: - Mostly a database contains one or more than one tables and each table is uniquely identified by a name (such as the "Customers" or "Orders" etc.). Each table contains the records (rows) with the datas. An example of the database system is given below: CustomerID CustomerName ContactName Address City PostalCode Country 1 Abhishake Chakrabarty Abhishake 2 Bibek Nandi Bibek 3 Antonio Moreno Taquería Antonio Moreno 4 Around the Horn Thomas Hardy 5 Berglunds snabbköp Christina Berglund A.J.c.bose road street- 40 Behala street- 34 Mataderos 2312 México D.F. 120 Hanover Sq. Berguvsvagen- 8 Kolkata Kolkata India India Mexico London WA1 1DP UK Lulea S Sweden SQL Statement: - Most of the actions which we need to perform on the database are done with the help of the SQL statements. The following SQL command is use to see all the records in the table "Customers": - SELECT * FROM Customers. In our project 1-st a database then a table is created in the following manner. Figure 1:- Block diagram of customer personal details account table for online shopping Then another table on the same database is created in the following manner. 2016, IJARCSMS All Rights Reserved ISSN: (Online) 61 P a g e

3 Figure 2:- Block diagram of customer order details account table for online shopping III. HTML Hyper Text Markup Language (HTML) is the standard markup language which is use to create the web pages [4]. The HTML was mainly developed by the physicist Tim Berners-Lee at CERN in the year 1980 [4]. Along with the CSS and JavaScript HTML is a cornerstone technology and most of the websites used this technology to create the visually engaging WebPages, user interfaces which is use for the web applications and the user interfaces which is use for the mobile applications. Web browsers can read the HTML files and render them into the visible or audible web pages. IV. ASP.NET ASP.NET is the open-source server-side web application framework which is design for the web development to produce dynamic web pages [8]. It was developed by the Microsoft for allowing the programmers to build the dynamic web sites, web applications and the web services. ASP.NET is very much user friendly for the user to design any webpage. It provides the capability for editing, updating and managing the SQL Server database [7]. It was first released in January 2002 which is the version 1.0 of the.net Framework. Features of ASP:- ASP dynamically edits, changes, or adds any content of any Web page. It responds to the user queries or data submitted from the HTML forms. ASP can access any data or databases and finally return the results to the browser. ASP is very much useful to customize a Web page to make the Web page more useful for individual users. Characteristics of ASP.NET: - ASP.NET Web pages are officially known as the Web Forms which are basically the main building blocks for the development of application in ASP.NET. There are two basic methodologies for the Web Forms the first one is the web application format and second one is the web site format. The web applications are need to be compiled before 2016, IJARCSMS All Rights Reserved ISSN: (Online) 62 P a g e

4 the deployment, while the web sites structures allow the user to copy the files directly to the server without the prior compilation. Session: - ASP.NET session state helps us for storing and retrieving the values for the user as the user navigates the ASP.NET pages in the Web application. HTTP is the stateless protocol, which means that a Web server treats in every HTTP request for the page as an independent request. Basically for all the ASP.NET applications ASP.NET session state is enabled. The Session state includes: Application state which is use to storing the variables that can be easily accessed by all the users of the ASP.NET application. Profile properties that persists the user values in the data store without expiring them. View state which is use to persist the values in the page. Custom Date and Time Format String: - The date and time format string express the text representation of the DateTime or DateTimeOffset value that is the results from the formatting operation. It can also represent the date and time value which is required in the parsing operation for converting the string to the date and time. The custom format string is consists of one or more custom date and time format specifiers. The string which is not a standard date and time format string is interpreted as the custom date and time format string. In the case of date and time the NOW property plays an important role to return the DateTime value which represents the current date and time on local computer. There is a difference between the DateTime value which represents the number of ticks which have been elapsed since midnight of December 25, 0000 and the string representation of the DateTime value, which expresses the date and time value in the culture-specific format. Figure 3: - Creating an ASP.NET Web file in Visual Studio 2012 V. LITERATURE REVIEW 2016, IJARCSMS All Rights Reserved ISSN: (Online) 63 P a g e

5 SQL statements are mainly used to perform the tasks such as update the data on a database, or to retrieve the data from a database etc [1, 2]. Programs which written for the.net Framework execute in a software environment, which is known as the Common Language Runtime (CLR) [3], which is basically an application virtual machine that provides the services such as the security system, management of memory, and handling the exception. RDBMS stands for the Relational Database Management System which is the basis of SQL, and all the modern database systems such as the MS SQL Server, IBM DB2, Oracle, MySQL and the Microsoft Access etc [5, 6]. Hyper Text Markup Language (HTML) is the standard markup language which is use to create the web pages [4]. The HTML was mainly developed by the physicist Tim Berners-Lee at CERN in the year 1980 [4]. ASP.NET is the open-source server-side web application framework which is design for the web development to produce dynamic web pages [8]. It provides the capability for editing, updating and managing the SQL Server database [7]. VI. PROCDURE AND OPERATION 1. At first we go to the Create Account Page from the Home Page to create an account for buying any product by simply clicking on the Sign In and Create Account Button as shown in the figure Then in the Create Account Page we create a new Account to buy any product as shown in the figure 5 and if the account is already exist then it shows a message that the account is already exist. 3. Then we go to the Login Page for login with the account where we have to provide the Login Id and the Password then click on the Sign In button as shown in the figure After that we go to the Home Page to select the products which we want to buy as shown in the figure 7. Then we select any product category to buy the product. 5. Suppose we go to the page of Mobile for buying any mobile as shown in the figure 8. Then we select any product and clicking on the button Buy It to buy it. In this page the specification of the product is provided which is helpful for buying any product. 6. Then we go to the Order Details Page for providing the necessary information such as the Phone No., Id, State and Address etc. as shown in the figure 9 and after proving all the information we have to click on the Order It button. Then we go to the Confirm the Order Page. In this page if we want to cancel the order then we has to click on the cancel the order button and if we press on the confirmed the order button then the order is placed. When we placed any order then automatically the Bill System Page is generated of that particular product which we order as shown in the figure 10. If we want to cancel any order then we have to call on the Phone No. or mail on the Id provided on the Home Page as shown in figure Here we can also view any order by the Order Id or we can also view all the orders what we order in this website as shown in figure 11. In the View Order by Order Id Page we can view any order by the help of Order Id of the product (shown in figure 12). In the View All Order Page we can view the entire products we order here by clicking on the View All Order button as shown in figure In this webpage we can also manage our account (like create, update and delete) in the Manage Account Page as shown in figure 14. In this page we have three options. First one is Updating Account, second one is View Account and the third one is Remove Account. In Update Account Page we can easily update our Account like the First Name, Last Name, Password, Phone No., Id, Favorite No., State and Address etc (shown in figure 15). In the View Account Page we can easily view our account by simply pressing the View Account button as shown in the figure 16. We can also remove our account permanently by pressing on the Remove Account button in the Remove Account Page as we see in the figure In this webpage we can easily sign out to the account by pressing on the button Sign Out as we see in the figure In this webpage we have also the facility of overcoming the problem of forgetting the password. If we forget the password of our account then we have to first go to the Forget Password Page and then we have to type the Favorite No. as we 2016, IJARCSMS All Rights Reserved ISSN: (Online) 64 P a g e

6 mentioned previously when we create the account and then we have to type a New Password for that particular account and confirmed that Password. After that we have to press on the Change the Password then automatically a new password is generated for the account as we see in the figure 19. Figure 4:- Home Page before sign in with the account Figure 5:- Create Account Page Figure 6:- Login Page Figure 7:- Home Page after sign in with the account Figure 8:- Webpage for buying Mobile Figure 9:- Order Details Page Figure 10:- Bill System Page 2016, IJARCSMS All Rights Reserved ISSN: (Online) 65 P a g e

7 Figure 11:- View Order Page Figure 12:- View Order by Order Id Figure 13:- View All Order Page Figure 14:- Manage Account Page Figure 15:- Update Account Page Figure 16:- View Account Page Figure 17:- Remove Account Page Figure 18:- Home Page after clicking on the Sign Out button Figure 19:- Forget Password Page 2016, IJARCSMS All Rights Reserved ISSN: (Online) 66 P a g e

8 VII. PROCESS DIAGRAM VIII. CONCLUSION In this article a robust online shopping system have been developed to make a online shopping easier using ASP.NET Technology and Microsoft SQL. Using this technology one can purchase lots of thing from market without any physical presence. This system can also be modified and make it more and more user friendly by certain modification of the ASP.NET code in future. References 1. Dedi Iskandar Inan, Ratna Juita: Analysis and Design Complex and Large Data Base using MySQL Workbench. International Journal of Computer Science & Information Technology (IJCSIT) Vol 3, No 5, Oct Lightstone, Sam., Teorey, Toby. And Nadeau, Tom. (2007) Physical Database Design: The Database Professional's Guide to Exploiting Indexes, Views, Storage, and More, Publisher: Morgan Kaufmann. 3. Dhamayanthi N, Thangavel P: Structural Design Patterns and.net Framework 2.0. JOURNAL OF OBJECT TECHNOLOGY - Vol.5, No.8, November - December T.N.Sharma, Priyanka Bhardwaj, Manish Bhardwaj: Differences between HTML and HTML 5. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue Ion-Sorin STROE: MySQL databases as part of the Online Business, using a platform based on Linux. Database Systems Journal vol. II, no. 3/ James W. Denton, A. Graham Peace: Selection and Use of MySQL in a Database Management Course. Journal of Information Systems Education, Vol. 14(4). 7. Shunfu Hu, Ting Dai: Online Map Application Development Using Google Maps API, SQL Database, and ASP.NET. International Journal of Information and Communication Technology Research, Volume 3 No. 3, March Paphun Wangmutitakul, Toshimi Minoura, and Alec Maki: WebGD: A Framework for Web-Based GIS/Database Applications. JOURNAL OF OBJECT TECHNOLOGY, Vol. 3, No. 4 (April 2004). 2016, IJARCSMS All Rights Reserved ISSN: (Online) 67 P a g e

9 AUTHOR(S) PROFILE Pulakesh Roy, was born on 27th october, 1992 at Burdwan district in the state of West bengal, India. He has done his Secondary and higher secondary schooling from Burdwan (West Bengal). He has completed his under-graduation with Bachelor of Technology in Electronics & Communication (in the year 2014) and post-graduation with Master of Technology in EIE under the ECE department (in the year 2014) from university of burdwan West Bengal. A part of his master s work has already been published in International Journals and presented in International and National conferences. Dibyendu Roy, was born on 4th April, 1985 at Burdwan district in the state of West bengal, India. He has done his Secondary and higher secondary schooling from Burdwan (West Bengal). He has completed his under-graduation with Bachelor of Technology in Electronics & Communication (in the year 2007) and post-graduation with Master of Technology in Nanotechnology (in the year 2009) from Jadavpur university, Kolkata,West Bengal in first class with distinction. He has joined the Department of Metallurgical and Materials Engineering at the Indian Institute of Technology, Kharagpur in the year July 2009 and completed his Ph.D. The author is a member of different professional bodies like The Indian Institute of Metals and The Indian Science Congress. His doctoral work has already been published in several International Journals and presented in International and National conferences. 2016, IJARCSMS All Rights Reserved ISSN: (Online) 68 P a g e

Development of Online Banking System with High Level of Security using ASP.NET Technology and Microsoft SQL

Development of Online Banking System with High Level of Security using ASP.NET Technology and Microsoft SQL Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 5.258 IJCSMC,

More information

MySQL. Prof.Sushila Aghav

MySQL. Prof.Sushila Aghav MySQL Prof.Sushila Aghav Introduction SQL is a standard language for storing, manipulating and retrieving data in databases. SQL is a part of many relational database management systems like: MySQL, SQL

More information

SQL is a standard language for accessing and manipulating databases.

SQL is a standard language for accessing and manipulating databases. Introduction to SQL SQL is a standard language for accessing and manipulating databases. What is SQL? SQL stands for Structured Query Language SQL lets you access and manipulate databases SQL is an ANSI

More information

24*7 Wagon Management System for Car Showroom

24*7 Wagon Management System for Car Showroom IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 11 April 2016 ISSN (online): 2349-6010 24*7 Wagon Management System for Car Showroom Vijay Masne Assistant Professor

More information

20486-Developing ASP.NET MVC 4 Web Applications

20486-Developing ASP.NET MVC 4 Web Applications Course Outline 20486-Developing ASP.NET MVC 4 Web Applications Duration: 5 days (30 hours) Target Audience: This course is intended for professional web developers who use Microsoft Visual Studio in an

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

Advanced Migration of Schema and Data across Multiple Databases

Advanced Migration of Schema and Data across Multiple Databases Advanced Migration of Schema and Data across Multiple Databases D.M.W.E. Dissanayake 139163B Faculty of Information Technology University of Moratuwa May 2017 Advanced Migration of Schema and Data across

More information

Languages in WEB. E-Business Technologies. Summer Semester Submitted to. Prof. Dr. Eduard Heindl. Prepared by

Languages in WEB. E-Business Technologies. Summer Semester Submitted to. Prof. Dr. Eduard Heindl. Prepared by Languages in WEB E-Business Technologies Summer Semester 2009 Submitted to Prof. Dr. Eduard Heindl Prepared by Jenisha Kshatriya (Mat no. 232521) Fakultät Wirtschaftsinformatik Hochshule Furtwangen University

More information

Jarek Szlichta

Jarek Szlichta Jarek Szlichta http://data.science.uoit.ca/ SQL is a standard language for accessing and manipulating databases What is SQL? SQL stands for Structured Query Language SQL lets you gain access and control

More information

Design and Implementation of Cost Effective MIS for Universities

Design and Implementation of Cost Effective MIS for Universities Fourth LACCEI International Latin American and Caribbean Conference for Engineering and Technology (LACCET 2006) Breaking Frontiers and Barriers in Engineering: Education, Research and Practice 21-23 June

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications 20486C - Version: 1 23 February 2018 Developing ASP.NET MVC 5 Web Developing ASP.NET MVC 5 Web 20486C - Version: 1 5 days Course Description: In this course, students will learn to develop advanced ASP.NET

More information

EUROPEAN CURRICULUM VITAE FORMAT

EUROPEAN CURRICULUM VITAE FORMAT EUROPEAN CURRICULUM VITAE FORMAT Personal Details First name(s) / Surname(s) Atanas Antonov Phone +359884041176 E-mail Nationality I live in nant@abv.bg Bulgaria /Bulgaria Birth date 07.06.1982 Gender

More information

Special Education Room and Board Reimbursement Claim User Guide

Special Education Room and Board Reimbursement Claim User Guide Special Education Room and Board Reimbursement Claim User Guide OVERVIEW The Special Education Room and Board Reimbursement Claim system accessed through the Illinois State Board of Education s (ISBE)

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

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 02, 2015 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 02, 2015 ISSN (online): IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 02, 2015 ISSN (online): 2321-0613 Intelligent Script Editor: An Interactive Parallel Programming Tool Susmita Abhang 1

More information

11. Introduction to SQL

11. Introduction to SQL 11. Introduction to SQL 11.1 What is SQL? SQL stands for Structured Query Language SQL allows you to access a database SQL is an ANSI standard language SQL can execute queries against a database SQL can

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

Volume 6, Issue 4, April 2018 International Journal of Advance Research in Computer Science and Management Studies I. INTRODUCTION

Volume 6, Issue 4, April 2018 International Journal of Advance Research in Computer Science and Management Studies I. INTRODUCTION ISSN: 2321-7782 (Online) e-isjn: A4372-3114 Impact Factor: 7.327 Volume 6, Issue 4, April 2018 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey

More information

Electricity Bill Management System

Electricity Bill Management System Electricity Bill Management System Zameema Benazir.Z 1, Divya Prabha.P 2 Student 1,2 Department of Electrical and Electronics Engineering Kamaraj College of Engineering and Technology, Madurai, India.

More information

Lecture 9a: Sessions and Cookies

Lecture 9a: Sessions and Cookies CS 655 / 441 Fall 2007 Lecture 9a: Sessions and Cookies 1 Review: Structure of a Web Application On every interchange between client and server, server must: Parse request. Look up session state and global

More information

Design and Implementation of HTML5 based SVM for Integrating Runtime of Smart Devices and Web Environments

Design and Implementation of HTML5 based SVM for Integrating Runtime of Smart Devices and Web Environments Vol.8, No.3 (2014), pp.223-234 http://dx.doi.org/10.14257/ijsh.2014.8.3.21 Design and Implementation of HTML5 based SVM for Integrating Runtime of Smart Devices and Web Environments Yunsik Son 1, Seman

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications Developing ASP.NET MVC 5 Web Applications Course 20486C; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework tools

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

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni Vision Document 2.0 Online Book Store Phase-II Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Vamsi Krishna Mummaneni CIS 895 MSE Project Kansas State

More information

AYAN MONDAL ayan.mondal/

AYAN MONDAL ayan.mondal/ AYAN MONDAL +91-7872773669 mondalayan12@gmail.com, ayanmondal@iitkgp.ac.in http://cse.iitkgp.ac.in/ ayan.mondal/ Present Address Kharagpur - 721302 India Permanent Address Ashrampara (Teachers Colony)

More information

I. INTRODUCTION ABSTRACT

I. INTRODUCTION ABSTRACT 2018 IJSRST Volume 4 Issue 8 Print ISSN: 2395-6011 Online ISSN: 2395-602X Themed Section: Science and Technology Voice Based System in Desktop and Mobile Devices for Blind People Payal Dudhbale*, Prof.

More information

Alkan University College Student Information Management System

Alkan University College Student Information Management System American Journal of Operations Management and Information Systems 2016; 1(1): 1-6 http://www.sciencepublishinggroup.com/j/ajomis doi: 10.11648/j.ajomis.20160101.11 Alkan University College Student Information

More information

20486: Developing ASP.NET MVC 4 Web Applications (5 Days)

20486: Developing ASP.NET MVC 4 Web Applications (5 Days) www.peaklearningllc.com 20486: Developing ASP.NET MVC 4 Web Applications (5 Days) About this Course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

Excerpts of Web Application Security focusing on Data Validation. adapted for F.I.S.T. 2004, Frankfurt

Excerpts of Web Application Security focusing on Data Validation. adapted for F.I.S.T. 2004, Frankfurt Excerpts of Web Application Security focusing on Data Validation adapted for F.I.S.T. 2004, Frankfurt by fs Purpose of this course: 1. Relate to WA s and get a basic understanding of them 2. Understand

More information

Online Document Delivery Service (ODDS):

Online Document Delivery Service (ODDS): Online Document Delivery Service (ODDS): An Open Source Software Initiative for DDS Management SOFTWARE MANUAL Prepared by Dr. B.Sutradhar, Librarian & Mr. M.Manivannan, Information Analyst Central Library

More information

To Access Oracle: Access Oracle at: http://oraprod.district.aps:8051/oa_html/appslocallogin.jsp Enter your Username o Your Username is normally your First Initial, Middle, Full Last Name (For Example:

More information

20486 Developing ASP.NET MVC 5 Web Applications

20486 Developing ASP.NET MVC 5 Web Applications Course Overview In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework tools and technologies. The focus will be on coding activities that enhance the performance

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

20486C: Developing ASP.NET MVC 5 Web Applications

20486C: Developing ASP.NET MVC 5 Web Applications 20486C: Developing ASP.NET MVC 5 Web Course Details Course Code: Duration: Notes: 20486C 5 days This course syllabus should be used to determine whether the course is appropriate for the students, based

More information

AUTO GENERATION OF CODE AND TABLE TOOL

AUTO GENERATION OF CODE AND TABLE TOOL Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 4, April 2015,

More information

NTS A NAVIGATION TRACKER SYSTEM

NTS A NAVIGATION TRACKER SYSTEM NTS A NAVIGATION TRACKER SYSTEM Nitin Tooteja 1, Prerna Ahuja 2, Shanu Sharma 3 1 Student, Computer Science & Engineering, Amity University, Uttar Pradesh, India, ntooteja_30@yahoo.co.in 2 Student, Computer

More information

IBM WebSphere Application Server V3.5, Advanced Edition Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit

IBM WebSphere Application Server V3.5, Advanced Edition Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit Software Announcement July 25, 2000 IBM V3.5, Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit Overview WebSphere Application Server V3.5, manages and integrates

More information

Mobile Phone Monitoring System For Android Operating System

Mobile Phone Monitoring System For Android Operating System Mobile Phone Monitoring System For Android Operating System Ms.M.Kalpana Devi Asst.Professor,SRIT,CBE Ms.D.Vasuki Final Year M.C.A.,Student Abstract The Purpose of the project is to trace out the status

More information

A Research Review on Localization of Websites with.net Framework

A Research Review on Localization of Websites with.net Framework A Research Review on Localization of Websites with.net Framework H Sudarshan Department of Computer Science and Engineering MLRIT, Hyderabad B Surendra prabhakar Dept of computer Science Engineering MLRIT,

More information

AnyView. What s New in AnyView For Microsoft Dynamics GP Version 4.96 Build History

AnyView. What s New in AnyView For Microsoft Dynamics GP Version 4.96 Build History AnyView What s New in AnyView For Microsoft Dynamics GP 2010 Version 4.96 Build History Trademarks AnyView, and are trademarks of Accountable Software, (Arpelligo, Inc. ) Microsoft Dynamics is a trademark

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

Microsoft Certified Professional Transcript

Microsoft Certified Professional Transcript Microsoft Certified Professional Transcript Last Activity Recorded December 05, 2013 Microsoft Certification ID 213748 STEVE WILSON F1 Computing Systems Ltd 3 Kelso Place Upper Bristol Road Bath BA1 3AU

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

Digital Municipal. Computer Science and Engineering, St Joseph Engineering College, Vamanjoor, India

Digital Municipal. Computer Science and Engineering, St Joseph Engineering College, Vamanjoor, India International Journal of Internet of Things 2017, 6(2): 62-66 DOI: 10.5923/j.ijit.20170602.11 Digital Municipal Anusha Prakash, Arzoo V. Dadhania, Janice Carlin D Silva *, Sudhamshu Vidyananda, Gayana

More information

Alumni Tracking System

Alumni Tracking System IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Volume 8, PP 80-86 www.iosrjen.org Alumni Tracking System MihirJayavant, Shashank Kawle, PritiKhergamkar, ShitalGurale, Prof.

More information

Automated Survey Analysis System

Automated Survey Analysis System Automated Survey Analysis System Prof. Arti Bhore 1, Mr V.V. Mane 2, Mr S.B. Poul 3,Mr V.G. Patil 4,Mr S.S. Patil 5 Asst. Professor,Dept. of Computer Engineering, TCOER, Pune, India 1 Student,Dept. of

More information

ONLINE BILLBOARD VIKRAM KUMAR KONDAPANENI B.TECH, ACHARYA NAGARJUNA UNIVERSITY, 2007 A REPORT

ONLINE BILLBOARD VIKRAM KUMAR KONDAPANENI B.TECH, ACHARYA NAGARJUNA UNIVERSITY, 2007 A REPORT ONLINE BILLBOARD By VIKRAM KUMAR KONDAPANENI B.TECH, ACHARYA NAGARJUNA UNIVERSITY, 2007 A REPORT Submitted in partial fulfillment of the requirements for the degree MASTER OF SCIENCE Department of Computing

More information

Vision Document. Online E-commerce Music CD Store Version 2.0

Vision Document. Online E-commerce Music CD Store Version 2.0 Vision Document Online E-commerce Music CD Store Version 2.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Reshma Sawant CIS 895 MSE Project Kansas State

More information

A WEB BASED QUALITY FUNCTION INFORMATION MANAGEMENT, 1,2

A WEB BASED QUALITY FUNCTION INFORMATION MANAGEMENT, 1,2 A WEB BASED QUALITY FUNCTION INFORMATION MANAGEMENT, 1,2 M.Tech., Faculty, Department of CSE, SE&T, SPMVV, Tirupati, India. 1 vamsi.krish9@gmail.com, 2 harikrishna514@gmail.com 1042 ABSTRACT This work

More information

Developing ASP.NET MVC 5 Web Applications. Course Outline

Developing ASP.NET MVC 5 Web Applications. Course Outline Developing ASP.NET MVC 5 Web Applications Course Outline Module 1: Exploring ASP.NET MVC 5 The goal of this module is to outline to the students the components of the Microsoft Web Technologies stack,

More information

AY SECOND TERM Technology Education Revision Sheet

AY SECOND TERM Technology Education Revision Sheet AY 2017 2018 SECOND TERM Technology Education Revision Sheet Name: Date: Grade 10 Teacher: I. Fill in the blanks using correct answer: 1. WWW is World Wide Web. 2. The short form of Hyper Text Transfer

More information

Web & APP Developer Job Assured Course (3 in 1)

Web & APP Developer Job Assured Course (3 in 1) T&C Apply Web & APP Developer Job Assured Course (3 in 1) From Quick pert Infotech Interview Process Full Stack Web APP Developer Full Stack Web & App Developer (3 in 1 - Opens WebDesign, Web Developer

More information

All India Council For Research & Training

All India Council For Research & Training WEB DEVELOPMENT & DESIGNING Are you looking for a master program in web that covers everything related to web? Then yes! You have landed up on the right page. Web Master Course is an advanced web designing,

More information

AGRICULTURE BASED ANDROID APPLICATION

AGRICULTURE BASED ANDROID APPLICATION AGRICULTURE BASED ANDROID APPLICATION Prof.Aradhana D 1, Shiva Prasad K S 2, Shrivaishnavi J K 3, P. Sowmya 4, Tina Agarwal 5 1 Department of Computer Science & Engineering Ballari Institute of Technology

More information

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HIFIS Development Team May 16, 2014 Contents INTRODUCTION... 2 HIFIS 4 SYSTEM DESIGN... 3

More information

Online CD Library (OCDL):

Online CD Library (OCDL): Online CD Library (OCDL): An Open Source Software Initiative for CD Content Management SOFTWARE MANUAL Prepared by Mr. M.Manivannan Information Analyst Central Library Indian Institute of Technology Kharagpur

More information

Visual Studio 2010 Database Schema Could Not Be Retrieved For This Connection

Visual Studio 2010 Database Schema Could Not Be Retrieved For This Connection Visual Studio 2010 Database Schema Could Not Be Retrieved For This Connection The database features that are included in Visual Studio make use of one or more database connections. Before you can connect

More information

ZEND: Survey on the Examination System

ZEND: Survey on the Examination System ZEND: Survey on the Examination System Sun Bingli, K. Ramesh Babu School of Computing Science and Engineering, VIT University, TamilNadu, India bingli_0202@163.com; Abstract With the development of computer

More information

Certified ASP.NET Programmer VS-1025

Certified ASP.NET Programmer VS-1025 VS-1025 Certified ASP.NET Programmer Certification Code VS-1025 Microsoft ASP. NET Programming Certification allows organizations to strategize their IT policy and support to easily connect disparate business

More information

Where is Database Management System (DBMS) being Used?

Where is Database Management System (DBMS) being Used? The main objective of DBMS (Database Management System) is to provide a structured way to store and retrieve information that is both convenient and efficient. By data, we mean known facts that can be

More information

Price-Grabbing E-commerce Website Using ASP.Net and Oracle

Price-Grabbing E-commerce Website Using ASP.Net and Oracle Price-Grabbing E-commerce Website Using ASP.Net and Oracle Susheel Pal Mudhranthakm Indrapal CIS 690, Spring 2006 susheel@ksu.edu Abstract The following documentation is the project report of a price-grabbing,

More information

CS50 Quiz Review. November 13, 2017

CS50 Quiz Review. November 13, 2017 CS50 Quiz Review November 13, 2017 Info http://docs.cs50.net/2017/fall/quiz/about.html 48-hour window in which to take the quiz. You should require much less than that; expect an appropriately-scaled down

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

COURSE 20486B: DEVELOPING ASP.NET MVC 4 WEB APPLICATIONS

COURSE 20486B: DEVELOPING ASP.NET MVC 4 WEB APPLICATIONS ABOUT THIS COURSE In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus will be on coding activities that enhance the

More information

ER.STUFF. Kolhapur, Maharashtra, India.

ER.STUFF. Kolhapur, Maharashtra, India. ER.STUFF Prajakta Jadhav 1, Aakanksha Kondekar 2, Pooja Gatade 3, Vedika Kurale 4, Sofiya Jamadar 5 1,2,3,4,5 Department of Computer Science and Engineering, Bharti Vidyapeeth s College of Engineering

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

James Hollingshead SUMMARY

James Hollingshead SUMMARY James Hollingshead Phone: 740-707-5876 james@jameshollingshead.com SUMMARY Software developer with 13 years of experience in system analysis, requirements gathering, business analysis, architecture, design,

More information

The Skill Research of Interactive Web Site Based on.net: The Design and Development Yanwei XU 1, a, Honghui GONG 2, Ting ZHANG 3

The Skill Research of Interactive Web Site Based on.net: The Design and Development Yanwei XU 1, a, Honghui GONG 2, Ting ZHANG 3 3rd International Conference on Machinery, Materials and Information Technology Applications (ICMMITA 2015) The Skill Research of Interactive Web Site Based on.net: The Design and Development Yanwei XU

More information

Microsoft Developing ASP.NET MVC 4 Web Applications

Microsoft Developing ASP.NET MVC 4 Web Applications 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20486 - Developing ASP.NET MVC 4 Web Applications Length 5 days Price $4290.00 (inc GST) Version C Overview In this course, students will learn to develop

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

Design on Office Automation System based on Domino/Notes Lijun Wang1,a, Jiahui Wang2,b

Design on Office Automation System based on Domino/Notes Lijun Wang1,a, Jiahui Wang2,b 3rd International Conference on Management, Education Technology and Sports Science (METSS 2016) Design on Office Automation System based on Domino/Notes Lijun Wang1,a, Jiahui Wang2,b 1 Basic Teaching

More information

ANCHIT MADAAN. EMPLOYER : Infosys Limited DESIGNATION : Senior Systems Engineer DURATION : July, 2014 to Present

ANCHIT MADAAN. EMPLOYER : Infosys Limited DESIGNATION : Senior Systems Engineer DURATION : July, 2014 to Present ANCHIT MADAAN Date of Birth 18 th Jan 1993 Address 487, Phase 1-b, Shivalik Avenue, Naya Nangal, Punjab 140126 Email anchitmadaan93@gmail.com Phone +91-9882404746 +91 OBJECTIVE To work in a professional

More information

Developing Web Applications Using Microsoft Visual Studio 2008

Developing Web Applications Using Microsoft Visual Studio 2008 Course 2310C: Developing Web Applications Using Microsoft Visual Studio 2008 Length: 5 Day(s) Published: April 24, 2008 Language(s): English Audience(s): Developers Level: 100 Technology: Microsoft Visual

More information

RESTful -Webservices

RESTful -Webservices International Journal of Scientific Research in Computer Science, Engineering and Information Technology RESTful -Webservices Lalit Kumar 1, Dr. R. Chinnaiyan 2 2018 IJSRCSEIT Volume 3 Issue 4 ISSN : 2456-3307

More information

RAD Studio XE Datasheet

RAD Studio XE Datasheet RAD Studio XE Datasheet DATASHEET Embarcadero RAD Studio XE Complete solution for Windows,.NET, PHP and Web application development Embarcadero RAD Studio XE is a comprehensive rapid application development

More information

Aashijit Mukhopadhyay 2 Department of Computer Science St. Xavier s College(Autonomous) Kolkata, West Bengal India

Aashijit Mukhopadhyay 2 Department of Computer Science St. Xavier s College(Autonomous) Kolkata, West Bengal India ISSN: 2321-7782 (Online) Impact Factor: 6.047 Volume 4, Issue 10, October 2016 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Course 20486B; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

A Simple Course Management Website

A Simple Course Management Website A Simple Course Management Website A Senior Project Presented to The Faculty of the Computer Engineering Department California Polytechnic State University, San Luis Obispo In Partial Fulfillment Of the

More information

MULTI-NODE DATABASE APPLICATION DEPLOYMENT ON LAMP ARCHITECTURE

MULTI-NODE DATABASE APPLICATION DEPLOYMENT ON LAMP ARCHITECTURE MULTI-NODE DATABASE APPLICATION DEPLOYMENT ON LAMP ARCHITECTURE M. M. Chavan and Y. V. Dongre Department of Computer Engineering, Vishwakarma Institute of Information Technology, Pune ABSTRACT Recent trends

More information

All India Council For Technical Skill Development (AICTSD) In Association with IITians Embedded Technosolution

All India Council For Technical Skill Development (AICTSD) In Association with IITians Embedded Technosolution All India Council For Technical Skill Development (AICTSD) In Association with IITians Embedded Technosolution Dot NET with SQL Chapter 1 General.NET introduction Overview of the.net Platform How.NET is

More information

International School of Informatics and management, Jaipur Billing System Synopsis TEAM GROUP - 04 TEAM MEMBERS -ANIL KUMAR ANJANA -BHAIYA LAL ANJANA

International School of Informatics and management, Jaipur Billing System Synopsis TEAM GROUP - 04 TEAM MEMBERS -ANIL KUMAR ANJANA -BHAIYA LAL ANJANA International School of Informatics and management, Jaipur Billing System Synopsis TEAM GROUP - 04 TEAM MEMBERS -ANIL KUMAR ANJANA -BHAIYA LAL ANJANA -SAURABH JAIN PROJECT GUIDE - Ms JYOTI KHURANA (Lecturer

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

Overview of the Microsoft.NET Framework

Overview of the Microsoft.NET Framework Overview of the Microsoft.NET Framework So far in this course, we have concentrated on one part of.net, the Foundation Class Libraries. However, there s more to.net than the FCL. This lecture will tell

More information

SYSTEM FOR PHD STUDENTS INFORMATION STORING AND CONTROL

SYSTEM FOR PHD STUDENTS INFORMATION STORING AND CONTROL SYSTEM FOR PHD STUDENTS INFORMATION STORING AND CONTROL Catalin Bujdei, Sorin-Aurel Moraru, Francisc Sisak Automatics Department, Transilvania University of Brasov, M.Viteazu Street, no.5, 500174, Brasov,

More information

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Phone:

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad   Phone: E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Email: AhmadNassr@gmail.com Phone: 0599042502 1. Rationale This is the major project for both (Open Source and.net teams) as an E-Commerce

More information

The Internet. Tim Capes. November 7, 2011

The Internet. Tim Capes. November 7, 2011 The Internet Tim Capes November 7, 2011 What is the Internet? The internet is a global system consisting of millions if interconnected networks. These individual networks are anything from local (a Home

More information

FILED: NEW YORK COUNTY CLERK 10/10/ :33 PM INDEX NO /2016 NYSCEF DOC. NO. 81 RECEIVED NYSCEF: 10/10/2017

FILED: NEW YORK COUNTY CLERK 10/10/ :33 PM INDEX NO /2016 NYSCEF DOC. NO. 81 RECEIVED NYSCEF: 10/10/2017 SUPREME COURT OF THE STATE OF NEW YORK COUNTY OF NEW YORK In the Matter of the Application of THE BRONX DEFENDERS against Petitioner, The NEW YORK CITY POLICE DEPARTMENT, and WILLIAM BRATTON, in his official

More information

P2_L12 Web Security Page 1

P2_L12 Web Security Page 1 P2_L12 Web Security Page 1 Reference: Computer Security by Stallings and Brown, Chapter (not specified) The web is an extension of our computing environment, because most of our daily tasks involve interaction

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

National College of Ireland BSc in Computing 2015/2016. Mahmoud Azzam LocalDeal. Final Report

National College of Ireland BSc in Computing 2015/2016. Mahmoud Azzam LocalDeal. Final Report National College of Ireland BSc in Computing 2015/2016 Mahmoud Azzam 13110241 X13110241@student.ncirl.ie LocalDeal Final Report Table of Contents Table of Contents Executive Summary... 4 1 Introduction...

More information

UTILIZATION OF WEB TECHNOLOGY ON THE EXAMPLE OF PORTAL STAROSTY DISTRICT IN PLOCK.

UTILIZATION OF WEB TECHNOLOGY ON THE EXAMPLE OF PORTAL STAROSTY DISTRICT IN PLOCK. UTILIZATION OF WEB TECHNOLOGY ON THE EXAMPLE OF PORTAL STAROSTY DISTRICT IN PLOCK. A. KOSIŃSKI, W. ZABIEROWSKI, A. NAPIERALSKI KEYWORDS: Portal, CMS, portal administration, creates sides I. INTRODUCTION

More information

Mobile Communications Client Server System for Stock Exchange e-services Access

Mobile Communications Client Server System for Stock Exchange e-services Access Mobile Communications Client Server System for Stock Exchange e-services Access E. Pop, and M. Barbos Abstract Using mobile Internet access technologies and e- services, various economic agents can efficiently

More information

John M. Scarpaci. Summary. Professional Experience

John M. Scarpaci. Summary. Professional Experience 4313 Stoudt's Ferry Bridge Rd. Reading, PA 19605-3206 Email: john@jmsconsulting.com John M. Scarpaci Phone: 610.413.8765 www.jmsconsulting.com A successful software developer experienced in object-oriented

More information

SUMMARY OF QUALIFICATIONS

SUMMARY OF QUALIFICATIONS AMJAD AZIZ 1157 Rutherford Close SW Edmonton, Alberta T6W 1H6 Website: www.amjadaziz.com Email: amjadaziz@live.ca Mobile: 780.288.1515 Home: 780.249.0338 SKILLS Build customised websites to the highest

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

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

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design.

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design. FINAL REPORT Table of Contents I) Project Planning II) User Analysis III) Tasks Analysis IV) Storyboard V) Function Design VI) Scenario Design VII) Database VIII) Usability Questionnaire IX) System Version

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

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla About the Tutorial Joomla is an open source Content Management System (CMS), which is used to build websites and online applications. It is free and extendable which is separated into frontend templates

More information

A Web-Based Application for Automatic Evaluation of Programming Assignments

A Web-Based Application for Automatic Evaluation of Programming Assignments University of Nevada, Reno A Web-Based Application for Automatic Evaluation of Programming Assignments A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science

More information