Anda di halaman 1dari 49

Introduction 1.

1 Overview of the project


This project is allows to the student of our class involve various ability to improve their skills with what is required to the job selection process and quickly way of knowing in various news media and also find the examination result about our institution

announced to them .it also has the best feature of learning english in international level with Audio & Transcript in pdf . This Contain The way to announce the Job Requirements & Skill from the Government Employment Service .The way we do this is to set up a free initial consultation in order to determine your needs and requirements. Then it will give an estimate in a couple of days.

Module description
The project has the following main modules, these are main elements of this project .it helps to make high level performance in user manner Administration management User management Desin management Project change management Risk management Requirement managent Approved SEO management Output management

Administration management:
Administrator owns the overall determination of controls, setting of major objectives, and the identification of general purposes, guidance, leadership & control of the efforts of the groups towards some common goals. Admin has the privileges to update the nominees details like nominee code number, symbol, and place information. Admin also have the rights to restricts the users and give the access justices to the user to register

User management:
In this section define about the what are the processes are can done by the visiting this website. And also features of the website for the users .what are the kind of features are needed.

.Design management: In this section designing the website to in which way towards the better understanding of the contents are representing the core level info to the users. and respectively following the universal way at this website.

Project change management:


In this project change management at this project for what are the possibilities of the changes are followed with never be constant of the content. change the domain name. change the keyword, query, to the page address. .change this template of the website to users anticipation .change the content from website coming decades

Risk management:
At a risk management content is define about the what are the error may face by users side and administrator of the website and also web server side due to this website in online

Approved SEO management :


This website approved by THE GOOGLE (SEO) .SEO is a big decision that can potentially improve our site and save time, but you can also risk damage to your site and reputation. Make sure to research the potential advantages as well as the damage that an irresponsible SEO can do to our site.

Output management :
It define about output of the website at search engine optimization result of the report page what indicated ,what should have at this kind of the website.

Organization profile:

II. SYSTEM ANALYSIS


Student innovation website is although a much talked about possibility has still to come to fruition in its use. Although often used for conducting online surveys and the like, the technology is seldom used for interview where an unequivocal result is required. Such as local or international. however this

defined the trend is slowly changing with many residents holding as well as student unions through inform statement in quickly at this kind of the web site..

2.1 Existing system


In earlier time student should improve their skills for do browsing in various type of website .And also find the solution of our criteria for refer the lot of book in the library with different sections are likely history, science ,story . accordingly the anticipation of the students and necessity of theirs . may not be possible at the internet. fack of the website in internet for job search egines.

2.1.1 Drawbacks
Sources are not involve in validation and verification Design process may not publish while debug at the connection Content of the website may not be displayed even the publish Administer account hack by hackers may possible Visiting website may not possible while error in the internet

connection. Displaying website by S E O may not possible by search engine criteria

2.2 Proposed system:


This project is allows to the students of my class to improve their skills are following international quality of communication .how do we speak at interview for tell about employee. how do we behave at human resource interview .communicate & share their information in global level. we offer affordable website design and development services for students and also visitors. In this kind of the website is allows students to improve their ability in online test is available to them in various topics are following: Non Verbal Reasoning Test Verbal Reasoning Test Logical Reasoning Test Verbal Ability Test Aptitude Test General Knowledge Test Data Interpretation Test

TECHNICAL EDUCATION: Database java -programming C-programming

2.2.1Advantage of the proposed system:-

Interactive and user friendly website High security from hackers Usability Fast-loading pages Descriptive link text

Cross-platform/browser compatibility Screen Resolution Downloadable items to students

III. SOFTWARE CONFIGURATION 3.1 HARDWARE SPECIFICATION

Processor Motherboard Ram Hard disk drive Floppy drive Dvd/cd drive Monitor Keyboard Mouse Cabinet Hub Bandwidth :

intel pentium iv 1.8 ghz intel 915gvsr chipset board 4 GB 160 gb 1.44 mb sony 52 x dual layer drive 17 colour tft monitor multimedia keyboard 10keys logitech optical mouse atx iball. compex 16 lines. 100 mbps.

: : : : : : : : : :

3.2. SYSTEM SPECIFICATION:

Frontend Coding language Back end Operating systems Documentation

: : : : :

html, javascript ,css, xml html, javascript ,css, xml, php web hosting, cloud computing windows 7 microsoft word 2007.

3.3 LANGUAGE SPECIFICATION:

HTML

markup

consists

of

several

key

components,

including elements (and their attributes), character-based data types, character references and entity references. Another important component is the document type declaration, which triggers standards mode rendering. (The text between <html> and </html> describes the web page, and the text between <body> and </body> is the visible page content. The markup text '<title>This is a title</title>' defines the browser page title.)This Document Type Declaration is for HTML5. If the <!DOCTYPE html> declaration is not included, various browsers will revert to "quirks mode" for rendering. HTML documents are composed entirely of HTML elements that, in their most general form have three components: a pair of tags, a "start tag" and "end tag"; some attributes within the start tag; and finally, any textual and graphical content between the start and end tags, perhaps including other nested elements. The HTML element is everything between and including the start and end tags. Each tag is enclosed in angle brackets.The general form of an HTML element is therefore: <tag attribute1="value1" attribute2="value2">content</tag>. Some HTML elements are defined as empty elements and take the form <tag attribute1="value1" attribute2="value2" >. Empty elements may enclose no content, for instance, the BR tag or the inline IMG tag. The name of an HTML element is the name used in the tags. Note that the end tag's name is preceded by a slash character, "/", and that in empty elements the end tag is neither required nor allowed. If attributes are not mentioned, default values are used in each case.

HTML Element:

Header of the HTML document:<head>...</head>. Usually the title should be included in the head, for example:

.There are several types of markup elements used in HTM L :Structural markup describes the purpose of text For example, <h2>Golf</h2> establishes "Golf" as a second-level heading. Structural markup does not denote any specific rendering, but most web browsers have default styles for element formatting. Content may be further styled using Cascading Style Sheets (CSS).Presentational markup

describes the appearance of the text, regardless of its purpose .For example <b>boldface</b> indicates that visual output devices should render "boldface" in bold text, but gives little indication what devices that are unable to do this (such as aural devices that read the text aloud) should do. In the case of both<b>bold</b> and <i>italic</i>, there are other elements that may have equivalent visual renderings but which are more semantic in nature, such as <strong>strong text</strong> and <em> emphasised text</em> respectively. It is easier to see how an aural user agent should interpret the latter two elements. However, they are not equivalent to their presentational counterparts: it would be undesirable for a screen-reader to emphasize the name of a book, for instance, but on a screen such a name would be italicized. Most presentational markup elements have become deprecated under the HTML 4.0 specification in favor of using CSS for styling .Hypertext markup makes parts of a document into links to other documents. An anchor element creates a hyperlink in the document and its href attribute sets the link's target URL. For example the HTML markup, <a href="http://www.google.com/">Wikipedia</a>, will render the word

"Wikipedia" as a hyperlink. To render an image as a hyperlink, an 'img' element is inserted as content into the 'a' element. Like 'br', 'img' is an empty element with attributes but no content or closing tag.<a href="http://example.org"><img src="image.gif" alt="descriptive text" width="50" height="50" border="0"></a>.

HTML Attribute:

Most of the attributes of an element are name-value pairs, separated by "=" and written within the start tag of an element after the element's name. The value may be enclosed in single or double quotes, although values consisting of certain characters can be left unquoted in HTML (but not XHTML) .[44][45] Leaving attribute values unquoted is considered unsafe. In contrast with name-value pair attributes, there are some attributes that affect the element simply by their

presence in the start tag of the element, like the ismap attribute for the img element. There are several common attributes that may appear in many elements : The id attribute provides a document-wide unique identifier for an element. This is used to identify the element so that stylesheets can alter its presentational properties, and scripts may alter, animate or delete its contents or presentation. Appended to the URL of the page, it provides a globally unique identifier for the element, typically a sub-section of the page. For example, the ID "Attributes" in http://en.wikipedia.org/wiki/HTML#Attributes The class attribute provides a way of classifying similar elements. This can be used for semantic or presentation purposes. For example, an HTML document might semantically use the designation class="notation" to indicate that all elements with this class value are subordinate to the main text of the document. In presentation, such elements might be gathered together and presented as footnotes on a page instead of appearing in the place where they occur in the HTML source. Class attributes are used semantically in microformats. Multiple class values may be specified; for example class="notation important" puts the element into both the 'notation' and the 'important' classes.An author may use the style attribute to assign presentational properties to a particular element. It is considered better practice to use an element's id or class attributes to select the element from within a stylesheet, though sometimes this can be too cumbersome for a simple, specific, or ad hoc styling.The title attribute is used to attach subtextual explanation to an element. In most browsers this attribute is displayed as atooltip.The lang attribute identifies the natural language of the element's contents, which may be different from that of the rest of the document. For example, in an English-language document:This example displays as HTML; in most browsers, pointing the cursor at the abbreviation should display the title text "Hypertext Markup Language."Most elements also take the language-related attribute dir to specify text direction, such as with "rtl" for right-to-left text in, for

example, Arabic, Persian or Hebrew.

10

HTTP:
The World Wide Web is composed primarily of HTML documents transmitted from web servers to web browsers using the Hypertext Transfer Protocol (HTTP). However, HTTP is used to serve images, sound, and other content, in addition to HTML. To allow the web browser to know how to handle each document it receives, other information is transmitted along with the document. This meta datausually and includes the character the MIME encoding

type (e.g. text/html or application/xhtml+xml)

(see Character encoding in HTML).In modern browsers, the MIME type that is sent with the HTML document may affect how the document is initially interpreted. A document sent with the XHTML MIME type is expected to be wellformed XML; syntax errors may cause the browser to fail to render it. The same document sent with the HTML MIME type might be displayed successfully, since some browsers are more lenient with HTML.The W3C recommendations state that XHTML 1.0 documents that follow guidelines set forth in the recommendation's Appendix C may be labeled with either MIME Type.[] XHTML 1.1 also states that XHTML 1.1 documents should[59] be labeled with either MIME type

11

The CSS 1 specification was completed in 1996. Microsoft's Internet Explorer 3 was released in that year, featuring some limited support for CSS. But it was more than three years before any web browser achieved near-full implementation of the specification.Internet Explorer 5.0 for the Macintosh, shipped in March 2000, was the first browser to have full (better than 99 percent) CSS 1 support,[13] surpassing Opera, which had been the leader since its introduction of CSS support 15 months earlier. Other browsers followed soon afterwards, and many of them additionally implemented parts of CSS 2. As of August 2010, no (finished) browser has fully implemented CSS 2, with implementation levels varying (see Comparison of layout engines (CSS)).Even though early browsers such as Internet Explorer 3[11] and 4, and Netscape 4.x had support for CSS, it was typically incomplete and had many bugs that prevented their implementations from being usefully adopted. Variations: CSS has various levels and profiles. Each level of CSS builds upon the last, typically adding new features and typically denoted as CSS 1, CSS 2, CSS 3, and CSS 4. Profiles are typically a subset of one or more levels of CSS built for a particular device or user interface. Currently there are profiles for mobile devices, printers, and television sets. Profiles should not be confused with media types, which were added in CSS 2. CSS 1 The first CSS specification to become an official W3C Recommendation is CSS level 1, published in December 1996. Among its capabilities are support for properties such as typeface and emphasis Color of text, backgrounds, and other elemen ts Text attributes such as spacing between words, letters, and lines of text Alignment of text, images, tables and other elements Margin, border, padding, and positioning for most elements Unique identification and generic classification of groups of attributes The W3C no longer maintains the CSS 1 Recommendation. CSS 2 CSS level 2 specification was developed by the W3C and published as a recommendation in May 1998. A superset of CSS 1, CSS 2 includes a number of

12

new capabilities like absolute, relative, and fixed positioning of elements and zindex, the concept of media types, support for aural style sheets and bidirectional text, and new font properties such as shadows

The W3C no longer maintains the CSS 2 recommendation. CSS 2.1 CSS level 2 revision 1, often referred to as "CSS 2.1", fixes errors in CSS 2, removes poorly supported or not fully interoperable features and adds already-implemented browser extensions to the specification. In order to comply with the W3C Process for standardizing technical specifications, CSS 2.1 went back and forth between Working Draft status and Candidate Recommendation status for many years. CSS 2.1 first became a Candidate Recommendation on February 25, 2004, but it was reverted to a Working Draft on June 13, 2005 for further review. It returned to Candidate Recommendation on 19 July 2007 and then updated twice in 2009. However, since changes and clarifications were made, it again went back to Last Call Working Draft on 7 December 2010. CSS 2.1 went to Proposed Recommendation on 12 April 2011. After being reviewed by the W3C Advisory Committee, it was finally published as a W3C Recommendation on 7 June 2011. CSS 3 CSS 3 is divided into several separate documents called "modules". Each module adds new capabilities or extends features defined in CSS 2, preserving backward compatibility. Work on CSS level 3 started around the time of publication of the original CSS 2 recommendation. The earliest CSS 3 drafts were published in June 1999. Due to the modularization, different modules have different stability and statuses. As of June 2012, there are over fifty CSS modules published from the CSS Working Group., and four of these have been published as

formal recommendations 2012-06-19 : Media Queries

13

2011-09-29 : Namespaces 2011-09-29 : Selectors Level 3 2011-06-07 : Color Some modules (including Backgrounds and Borders and Multi-column Layout among others) have Candidate Recommendation(CR) status and are considered moderately stable. At CR stage, implementations are advised to drop vendor prefixes. CSS4 There is no single, integrated CSS4 specification, since it is split into separate modules. However, there are "level 4" modules. Since CSS3 split the CSS language's definition into modules, the modules have been allowed to level independently. Most modules are level 3 - they build on things from CSS 2.1. A few level 4 modules exist (such as Image Values, Backgrounds & Borders, orSelectors), which build on the functionality of a preceding level 3 module. Others define entirely new functionality, such as Flexbox. So, while there is no monolithic "CSS4" that will be worked on after "CSS3" is finished completely, the level 4 modules can collectively be referred to as "CSS4".

Browser support: Because not all browsers correctly parse CSS code, developed coding techniques known as CSS hacks can either filter specific browsers or target specific browsers (generally both are known as CSS filters). The former can be defined as CSS filtering hacks and the latter can be defined as CSS targeting hacks. Both can be used to hide or show parts of the CSS to different browsers. This is achieved either by exploiting CSS-handling quirks or bugs in the browser, or by taking advantage of lack of support for parts of the CSS specifications. Using CSS filters, some designers have gone as far as delivering different CSS to certain browsers to ensure designs render as expected. Because very early web browsers were either completely incapable of handling CSS, or

14

rendered CSS very poorly, designers today often routinely use CSS filters that completely prevent these browsers from accessing any of the CSS. Internet Explorer support for CSS began with IE 3.0 and increased progressively with each version. By 2008, the first Beta of Internet Explorer 8offered support for CSS 2.1 in its best web standards mode. An example of a historically well-known CSS browser bug was the Internet Explorer box model bug, where box widths are interpreted incorrectly in several versions of the browser, resulting in blocks that are too narrow when viewed in Internet Explorer, but correct in standards-compliant browsers. The bug can be avoided in Internet Explorer 6 by using the correct doctype in (X)HTML documents. CSS hacks and CSS filters are used to compensate for bugs such as this, just one of hundreds of CSS bugs that have been documented in various versions of Netscape, Mozilla Firefox, Opera, and Internet Explorer

(including Internet Explorer 7). Even when the availability of CSS-capable browsers made CSS a viable technology, the adoption of CSS was still held back by designers' struggles with browsers' incorrect CSS implementation and patchy CSS support. Even today, these problems continue to make the business of CSS design more complex and costly than it was intended to be, and cross-browser testing remains a necessity. Other reasons for the continuing non-adoption of CSS are: its perceived complexity, authors' lack of familiarity with CSS syntax and required techniques, poor support from authoring tools, the risks posed by inconsistency between browsers and the increased costs of testing Currently there is strong competition between the WebKit layout engine used in Apple Safari and Google in KDE's Konqueror browser Chrome, the similar KHTMLengine engine used used

and Mozilla's Gecko layout

in Firefox each of them is leading in different aspects of CSSAs of August 2009, Internet Explorer 8, Firefox 2 and 3 have reasonably complete levels of implementation of CSS 2.1.

JavaScript :JavaScript (JS) is an interpreted computer programming language.[5] As part of web browsers, implementations allow client-side scripts to interact with the

15

user, control the browser, communicate asynchronously, and alter the document content that is displayed. It has also become common in server-side programming, game development and the creation of desktop applications. JavaScript is a prototype-based scripting language with dynamic typing and has first-class functions. Its syntax was influenced by C. JavaScript copies many names and naming conventions from Java, but the two languages are otherwise unrelated and have very different semantics. The key design principles within JavaScript are taken from the Selfand Scheme programming languages.[ It is a multi-paradigm language, supporting object-oriented imperative,

and functional programming styles.The application of JavaScript to uses outside of web pagesfor example, in PDFdocuments, site-specific browsers,and desktop widgetsis also significant. Newer and faster JavaScript VMs and frameworks built upon them (notably Node.js) have also increased the popularity of JavaScript for server-side web applications.JavaScript was formalized in the ECMAScript language standard and is primarily used as part of a web browser (client-side JavaScript). This enables programmatic access to computational objects within a host environmentJavaScript was originally developed by Brendan Eich. While battling with Microsoft over the Internet, Netscape considered their client-server offering a distributed OS, running a portable version of Sun Microsystems' Java. Because Java was a competitor of C++ and aimed at professional programmers, Netscape also wanted a lightweight interpreted language that would complement Java by appealing to nonprofessional programmers, like Microsoft's Visual Basic (see JavaScript and Java). Although it was developed under the name Mocha, the language was officially called LiveScript when it first shipped in beta releases of Netscape Navigator 2.0 in September 1995, but it was renamed JavaScript. when it was deployed in the Netscape browser version 2.0B3. The change of name from LiveScript to JavaScript roughly coincided with Netscape adding support for Java technology in its Netscape Navigator web browser. The final choice of name caused confusion, giving the impression that the language was a spin-off of the Java programming language, and the choice has been characterized by many as a marketing ploy by Netscape to give JavaScript the cachet of what was then the hot new web programming language.

16

Server-side JavaScript Netscape introduced an implementation of the language for server-side scripting (SSJS) with Netscape Enterprise Server, first released in December, 1994 (soon after releasing JavaScript for browsers). Since the mid2000s, there has been a proliferation of server-side

JavaScriptimplementations. Node.js is one recent notable example of server-side JavaScript being used in real-world applications.

Adoption by Microsoft:
JavaScript very quickly gained widespread success as a client-side scripting language for web pages. Microsoft introduced JavaScript support in its own web browser, Internet Explorer, in version 3.0, released in August 1996.[18][not in citation
given]

Microsoft's webserver,Internet Information Server, introduced support for

server-side scripting in JavaScript with release 3.0 (1996). Microsoft started to promote webpage scripting using the umbrella term Dynamic HTML. Microsoft's JavaScript implementation was later renamed JScript to avoid trademark issues. JScript added new date methods to fix theY2K-problematic methods in JavaScript, which were based on Java's java.util.Date class.

Standardization:
In November 1996, Netscape announced that it had submitted JavaScript to Ecma International for consideration as an industry standard, and subsequent work resulted in the standardized version named ECMAScript. In June 1997, Ecma International published the first edition of the ECMA-262 specification. A year later, in June 1998, some modifications were made to adapt it to the ISO/IEC16262 standard, and the second edition was released. The third edition of ECMA262 (published on December 1999) is the version most browsers currently use. A fourth edition of the ECMAScript standard was not released and does not exist. Fifth edition of the Ecmascript standard was released in December 2009. The current edition of the ECMAScript standard is 5.1, released in June 2011. Later developments

17

JavaScript has become one of the most popular programming languages on the web. Initially, however, many professional programmers denigrated the language because its target audience consisted of web authors and other such "amateurs", among other reasons.[21]The advent of Ajax returned JavaScript to the spotlight and brought more professional programming attention. The result was a proliferation of comprehensive frameworks and libraries, improved JavaScript programming practices, and increased usage of JavaScript outside of web browsers, as seen by the proliferation of server-side JavaScript platforms.In January 2009, the CommonJS project was founded with the goal of specifying a common standard library mainly for JavaScript development outside the browser.

Trademark:
Today, "JavaScript" is a trademark of Oracle Corporation.[23] It is used under license for technology invented and implemented by Netscape Communications and current entities such as the Mozilla Foundation.

Features:
The following features are common to all conforming ECMAScript

implementations, unless explicitly specified otherwise.

Imperative and structured:JavaScript supports much of the structured programming syntax etc.). One partial

from C (e.g., if statements, while loops, switch statements,

exception is scoping: C-style block scoping is not supported. Instead, JavaScript has function scoping (although, block scoping using the let keyword was added in JavaScript 1.7). Like C, JavaScript makes a distinction

between expressions andstatements. One syntactic difference from C is automatic semicolon insertion, in which the semicolons that terminate statements can be omitted.

Dynamic typing:
As in most scripting languages, types are associated with values, not

with variables. For example, a variable x could be bound to a number, then later

18

rebound to a string. JavaScript supports various ways to test the type of an object, including duck typing. Object based: JavaScript is almost entirely object-based. JavaScript objects are associative arrays, augmented with prototypes (see below). Object property names are string keys. They support two equivalent syntaxes: dot notation (obj.x = 10) and bracket notation (obj['x'] = 10). Properties and their values can be added, changed, or deleted at run-time. Most properties of an object (and those on its prototype inheritance chain) can be enumerated using a for...in loop. JavaScript has a small number of built-in objects such as Function and Date.

Run-time evaluation
JavaScript includes an eval function that can execute statements provided as strings at run-time.

Functional: First-class functions


Functions are first-class; they are objects themselves. As such, they have properties and methods, such as .call() and.bind(). A nested function is a function defined within another function. It is created each time the outer function is invoked. In addition, each created function forms a lexical closure: the lexical scope of the outer function, including any constants, local variables and argument values, becomes part of the internal state of each inner function object, even after execution of the outer function concludes.

19

IV SYSTEM DESIGN AND DEVELOPMENT


1 DESIGN NOTATIONS
The design phase started by reviewing the study phase activates and making decisions about which function are to be performing by the hardware, software and human ware. The process of the system design is elaborate and consists of five main stages and it becomes more and more elaborate of each stage.

The supporting diagrams are provided in order to understand the working nature of the system. These diagrams will provide visual display, therefore it easy to understand in pictorial way rather than in a theoretical way. Here two types of supporting diagrams were provides as follows,

Data Flow Diagram System Flow Diagram Entity relational diagram

20

I.Data Flow Diagram

Admin/User 1. Q

login input

Web site/ Cloud computin g

Validat ion

No

Yes

Web page upload Under the process of publishing at over internet

Yes

no

Web site display

error

21

II). System flow diagram:

Html file &CSS &JAVASRIPT ,

system

Web administeration

Edit website

home

skill

english

news

Institute

job

Publish web sites all pages

SEO

ALL SEARCH ENGINE RESULT OF REPORT AT WEBSITE

22

c) Entity Relational ship Diagram

peges publish

Seo

Page rank

keywors

query

Web site adminiterator

Internet cloud computing

Users of website

23

Form design:
Html & java script, css , xml provides a good environment and rich tools to design the required form in the system, some of the forms in the system are : Home page Skills and training Resume Interview About institute English News Contact us Job & recruitment

3.2 Input design


Input design is a part of overall system design. The main objective during the input design is as given below: To produce a cost-effective method of input. To achieve the highest possible level of accuracy.

To ensure that the input is acceptable and understood by the


user.

Input stages:
The main input stages can be listed as below: Data manipulation Data draft Data verification Data control

24

Data transmission Data validation Data correction Input types: It is necessary to determine the various types of inputs. Inputs can be categorized as follows: External inputs, which are prime inputs for the system. Internal inputs, which are user communications with the system. Operational, which are computer departments communications to the system? Interactive, which are inputs entered during a dialogue.

3.3. Output design:


Outputs from computer systems are required primarily to communicate the results of processing to users. They are also used to provides a permanent copy of the results for later consultation. The various types of outputs in general are: External outputs, whose destination is outside the organization. Internal outputs whose destination is within organization and they are the Users main interface with the computer. Operational outputs whose use is purely within the computer department. Interface outputs, which involve the user in communicating directly with Output definition: The outputs should be defined in terms of the following points: Type of the output Content of the output Format of the output Location of the output Size of output

25

It is not always desirable to print or display data as it is held on a computer. It should be decided as which form of the output is the most suitable. For example Will decimal points need to be inserted Should leading zeros be suppressed.

Output media:
In the next stage it is to be decided that which medium is the most appropriate for the output. The main considerations when deciding about the output media are Keeping in view the above description the project is to have outputs mainly coming under the category of internal outputs. The main outputs desired according to the requirement specification are the outputs were needed to be generated as a hot copy and as well as queries to be viewed on the screen. Keeping in view these outputs, the format for the output is taken from the outputs, which are currently being obtained after manual processing. The standard printer is to be used as output media for hard copies.

3.4 Database design:


The database design is a must for any application developed especially more for the data storing at the cloud computing . over the internet while this kind of a data are stored and retrieved by one who administrative of the control.

26

V. System testing and implementation


The method of designing the system to produce desired result is accomplished in the System development. All the facilities required for developing the new system is acquired and computer program preparation is started TESTING METHODOLOGIES White-Box Testing This is performed knowing the internal working of the system. Tests are conducted to ensure that the internal operations perform according to the specification and all internal components have adequately been exercised.

White-Box testing is carried out in this project. The testing is executed by giving the valid data types and data. By conducting this test, unnecessary codes which are malfunctioning has been removed from the project.

The internal working of the system is tested by giving the inputs to the system successfully. Black-box Testing Black box testing treats the software as a black box without any understanding as to how the internals behave. It aims to test the functionality according to the requirements.

Knowing the specific function that a product or module has been designed to perform; tests can be designed to demonstrate the operational validity of each function. This type of test design is applicable to all levels of unit, integration, functional, system and acceptance testing.

After the completion of other testing, design of the system is tested using this testing.

27

5.1 System testing


System testing is the process of exercising software with the intent of finding and ultimately correcting errors. This fundamental philosophy does not change for web applications, because web-based systems and application reside on a network and interoperate with many different operating system, browsers, hardware platforms, and communication protocols; the search for errors represents a significant challenge for web application. The distributed nature of client/server environments, the performance issues associated with transaction processing, the potential presence of a number of different hardware platforms, the complexities of network communication, the need to serve multiple clients from a centralized database and the requirements imposed on the server all combine to make testing of client\server architectures. Testing issues Types of testing 1. Unit testing 2. Integration testing 3. Validation testing 4. Output testing 5. User acceptance testing 6. System testing:-

1.Unit testing :

28

All modules were tested and individually as soon as they were completed were checked for there correct functionality. Unit testing is carried out by verify and recover errors within the boundary of the smallest unit or a module. In this testing step, each module was found to be working satisfactory per the expected output of the module. In the package development, each module is tested separately after it has been completed and checked with valid data.

2.Integration testing :
The entire project was split into small programs; each of these single programs gives a frame as an output. These programs were tested individually; at last all these programs where combined together by creating another program where all these constructions were used. It give a lot of problem by not functioning in an integrated manner. The user interface testing is important since the user has to declare that the arrangements made in the frames are convenient and it is satisfied. When the frames are the test, the end user gave suggestion. Since they where much exposed to do the work manually.

3. validation testing:
At the culmination of the black box testing software is completely assembled as a package. Interfacing errors have been uncovered and corrected and a final series of test i.e., validation succeeds when the software functions in a manner that can be reasonably accepted by the customer.

4. output testing:
After performing the validation testing the next step is output testing of the proposed system. Since the system cannot be useful if it does not produce the required output. Asking the users about the format in which the system is required tests the output displayed or generated by the system under consideration. Here the output format is considered in two ways. One is on screen and another one is

29

printed format. The output format on the screen is found to be corrected as the format was designed in the system phase according to the user needs. And for the hardcopy the output comes according to the specifications requested by the user. Here the output testing does not result in any correction in the system.

5. User acceptance testing:


User acceptance testing of the system is the key factor the success of any system. The system under consideration is tested for user acceptance by constantly keeping in touch with prospective system at the time of development and making change whenever required. This is done with regard to the input screen design and output screen design.

6. system testing:
This is to verify that all the system elements have been properly integrated and perform allocated functions. Testing is executing a program to test the logic changes made in it and with intention of finding errors. Tests are also conducted to find discrepancies between system and its original objective, current specification and documents.

User training:
User training is designed to prepare the user for testing & convening the system. There are several ways to train the user. They are 1. 2. 3. user manual. help screens. training demonstration.

user manual:

30

The summary of important functions about the system and software can be provided as a document to the user.

help screens:
This features now available in every software package, especially when it is used with a menu. The user selects the help option from the menu. The system accesses the necessary description or information for user reference.

training demonstration:
Another user training element is a training demonstration. Live demonstrations with personal contact are extremely effective for training users.

31

5.2 SYSTEM IMPLEMENTATION :


Implementation is the stage in the project where the theoretical design is turned into a working system. The most crucial stage is achieving a successful new system & giving the user confidence in that the new system will work efficiently & effectively in the implementation state. The stage consists of Testing the developed program with simple data. Detections and correction of error. Creating whether the system meets user requirements. Testing whether the system. Making necessary changes as desired by the user. Training user personnel. Implementation procedures The implementation phase is less creative than system design. A system project may be dropped at any time prior to implementation, although it becomes more difficult when it goes to the design phase. The final report to the implementation phase includes procedural flowcharts, record layouts, report layouts, and a workable plan for implementing the candidate system design into an operational one. Conversion is one aspect of implementation. The conversion portion of the implementation plan is finalized and approved. Files are converted. Parallel processing between the existing and the new system are logged on a special form. Assuming no problems, parallel processing is discontinued. Implementation results are documented for reference.

32

VI. CONCLUSION AND FUTURE ENHANCEMENT


Conclusion
The system is similar to a decision support system that provides useful transformation to the users of the student This information helps in making decisions regarding assignment of milestone in our class student life. The system required by the client based on their input in a faster manner.

Further enhancements:
The main scope of this project is to be able to show the usability of the web services and how it can be applied to an website. Additionally, there will be maintenance processes applied to improve the efficiency of web services. The system can be further enhanced by adding new features and facilities for internet. . In the future enhancement the website can be made and distributed to every users about data base account at here .make Large number of tera byte storage will launching at their database for downloadable items to the users.

33

Appendix
Sample Code:
<head> <meta http-equiv="X-UA-Compatible" content="IE=9,chrome=1"/> <meta charset="utf-8"/> <title>venkateswaran</title> <meta name="fb_admins_meta_tag" content="venkateswaran"/> <meta name="keywords" content="venkateswaran2010"/> <meta name="description" content=" Education is the most powerful weapon which you can use to change the world. Nelson Mandela Change, Powerful, Weapon It is the mark of an educated mind to be able to entertain a thought without accepting it. Aristotle liked venkateswaran2010"/> <link rel="shortcut icon" href="http://www.wix.com/favicon.ico" type="image/png"/> <link rel="canonical" href="http://venkeerthana2010.wix.com/venkateswaran2010"/> <meta http-equiv="X-Wix-Renderer-Server" content="apu2.aus"/> <meta http-equiv="X-Wix-Meta-Site-Id" content="12f73b1e-426f-942b-3e100d7b237354a0"/> <meta http-equiv="X-Wix-Application-Instance-Id" content="12f73b1e-40783a21-efd2-2a77ba06daaa"/> <meta http-equiv="X-Wix-Published-Version" content="214"/> <meta http-equiv="etag" content="fbf6bb65573d66b2aa11c53623e0a310"/> <meta property="og:title" content="venkateswaran"/> <meta property="og:type" content="article"/> <meta property="og:url" content="http://venkeerthana2010.wix.com/venkateswaran2010"/> <meta property="og:site_name" content="venkateswaran"/> <meta property="fb:admins" content="venkateswaran"/> <meta property="og:description" content=" Education is the most powerful weapon which you can use to change the world. Nelson Mandela Change, Powerful, Weapon It is the mark of an educated mind to be able to entertain a thought without accepting it. Aristotle liked venkateswaran2010"/> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE"/> <meta id="wixMobileViewport" name="viewport" content="minimumscale=0.25, maximum-scale=1.2"/> <!-IMPORTANT! LOOKING FOR THIS SITES SEO CONTENT? This site's SEO content, such as meta tags and headers, is not here.

34

This is because search engines, like Google, actually crawl the site's homepage via http://venkeerthana2010.wix.com/venkateswaran2010?_escaped_fragment_=. Internal pages, like resume, also have their own special search engine versions, for example: http://venkeerthana2010.wix.com/venkateswaran2010?_escaped_fragment_=resu me%2Fc1vs8 If youre looking for this sites SEO content, thats where you can view it. Want more information about Ajax page crawling? Read Google's explanation here: http://bit.ly/ajaxcrawling --> <!-- META DATA --> <script type="text/javascript"> var rendererModel = {"debugMode":"nodebug","previewMode":false,"serviceMappings":{"1":{"idInM etaSite":1,"idInApp":"12f73b1e-4078-3a21-efd22a77ba06daaa","applicationType":"HtmlWeb"}},"metaSiteId":"12f73b1e-426f942b-3e10-0d7b237354a0","premiumFeatures":[],"siteId":"12f73b1e-4078-3a21efd2-2a77ba06daaa","userId":"d1e33924-d1ff-4e9d-8b4e29bb0cd79e0a","published":true,"applicationType":"HtmlWeb","documentType": "UGC","siteTitleSEO":"venkateswaran","clientSpecMap":{"2":{"type":"sitemem bers","applicationId":2,"collectionType":"ApplyForMembership","smcollectionId ":"130ae4d8-3611-721f-68f17b2b0bca8ecf"},"1":{"type":"appbuilder","applicationId":1,"appDefinitionId":"3d 590cbc-4907-4cc4-b0b1-ddf2c5edf297","instanceId":"130ae2ec-9844-395d-1e7dd73fa09f4511"},"3":{"type":"ecommerce","applicationId":3,"appDefinitionId":"5 5a88716-958a-4b91-b6666c1118abdee4","magentoStoreId":"14476854","packageName":"ecommerce","wi dgets":{"30b4a102-7649-47d9-a60b-bfd89dcca135":{"widgetId":"30b4a1027649-47d9-a60bbfd89dcca135","defaultHeight":600,"defaultWidth":500},"adbeffec-c7df-4908acd0-cdd23155a817":{"widgetId":"adbeffec-c7df-4908-acd0cdd23155a817","defaultHeight":150,"defaultWidth":500},"f72a3898-8520-4b608cd6-24e4e20d483d":{"widgetId":"f72a3898-8520-4b60-8cd624e4e20d483d","defaultHeight":600,"defaultWidth":800},"c029b3fd-e8e4-44f1b1f0-1f83e437d45c":{"widgetId":"c029b3fd-e8e4-44f1-b1f01f83e437d45c","defaultHeight":50,"defaultWidth":200},"cd54a28f-e3c9-452291c4-15e6dd5bc514":{"widgetId":"cd54a28f-e3c9-4522-91c415e6dd5bc514","defaultHeight":50,"defaultWidth":200},"c614fb79-dbec-4ac7b9b0-419669fadecc":{"widgetId":"c614fb79-dbec-4ac7-b9b0419669fadecc","defaultHeight":50,"defaultWidth":200},"5fca0e8b-a33c-4c18b8eb-da50d7f31e4a":{"widgetId":"5fca0e8b-a33c-4c18-b8ebda50d7f31e4a","defaultHeight":150,"defaultWidth":800},"ae674d74-b30b-47c3aba0-0bd220e25a69":{"widgetId":"ae674d74-b30b-47c3-aba00bd220e25a69","defaultHeight":150,"defaultWidth":220}}},"4":{"type":"wixapps ","applicationId":4,"appDefinitionId":"e4c4a4fb-673d-493a-9ef1661fa3823ad7","datastoreId":"f4e604f9-025a-45b6-a43befa217c15fc3","packageName":"menu","widgets":{"1660c5f3-b183-4e6c-a873-

35

5d6bbd918224":{"widgetId":"1660c5f3-b183-4e6c-a8735d6bbd918224","defaultHeight":100,"defaultWidth":400}}},"5":{"type":"public", "applicationId":5,"appDefinitionId":"12d5833e-f061-7cc8-5122e1d404f6c8ae","appDefinitionName":"Google AdSense","instance":"b5pKvFeKhDRcuY9W7XEiddXsp0cZIuywlGDhh861snE. eyJpbnN0YW5jZUlkIjoiMTMwZjdhYTAtNjZiYy0wNjMyLWNkMDItOTVmZ WU4MzIxMTlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0OjA3Ljc4 MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMjA0LzMxNDk zIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished":true,"sectionMobilePubl ished":false,"widgets":{"12d58350-abc8-568f-db5cbd1c19a2a71a":{"widgetUrl":"http://adsense.apps.wix.com/view","widgetId":"12 d58350-abc8-568f-db5cbd1c19a2a71a","refreshOnWidthChange":true,"published":true,"mobilePublished ":false}},"appRequirements":{"requireSiteMembers":false}},"6":{"type":"public" ,"applicationId":6,"appDefinitionId":"12d828f7-a297-0bc0-a147e8976823817d","appDefinitionName":"Latest News","instance":"V0ZlMP0z2xN3X005XHJ94J8e7v_0DXC3Ac2UG1gaK90.ey JpbnN0YW5jZUlkIjoiMTMwZjdiMzgtMWY5Mi0zOTMxLWNkMDItOTVmZ WU4MzIxMTlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0OjA3Ljc4 MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMjA0LzMxNDk zIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished":true,"sectionMobilePubl ished":false,"widgets":{"12d82a10-8e82-c7de-4ccde2e1a9bb726a":{"widgetUrl":"http://petprojektlabs.com/wix/newsfeed/widget"," widgetId":"12d82a10-8e82-c7de-4ccde2e1a9bb726a","refreshOnWidthChange":true,"published":true,"mobilePublished ":false}},"appRequirements":{"requireSiteMembers":false}},"7":{"type":"public" ,"applicationId":7,"appDefinitionId":"12cd25d6-9dad-cad9-636af9edbec13b41","appDefinitionName":"JOBS","instance":"Uqqoj5HUao0HPUui4 6mcBSWPmyWLEfy5__eG3JFjGI.eyJpbnN0YW5jZUlkIjoiMTMxMDAyYTQtZDI2MS0wMjNjLWZmMjctZG YyYzQxZmExMGIzIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0OjA3 Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMjA0LzMx NDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionUrl":"http://www.emplada.com /wix","sectionMobileUrl":"http://www.emplada.com/wix","sectionPublished":true ,"sectionMobilePublished":true,"sectionDefaultPage":"","sectionRefreshOnWidth Change":true,"widgets":{"12cd2648-93ab-7d67-905e574eaea59673":{"widgetUrl":"http://www.emplada.com/wix","widgetId":"12cd26 48-93ab-7d67-905e574eaea59673","refreshOnWidthChange":true,"published":true,"mobilePublished ":false}},"appRequirements":{"requireSiteMembers":false}},"8":{"type":"public" ,"applicationId":8,"appDefinitionId":"129acb44-2c8a-8314-fbc873d5b973a88f","appDefinitionName":"Google Event Calendar","instance":"_bXUQHhBP7oOOJh2TFABze1klKA2aeE3IJeqJKlaRCs.e yJpbnN0YW5jZUlkIjoiMTMxMThhZmMtOTlhZS1hMDk2LTI5ZWEtMTUxYT JmODcyYzg5Iiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0OjA3Ljc4Mi 0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMjA0LzMxNDkzIi wiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished":true,"sectionMobilePublish ed":false,"widgets":{"129acb44-2c60-3020-59890f5aea90b16f":{"widgetUrl":"http://calendar.apps.wix.com/production/calendar/u ser","widgetId":"129acb44-2c60-3020-5989-

36

0f5aea90b16f","refreshOnWidthChange":true,"published":true,"mobilePublished" :false}},"appRequirements":{"requireSiteMembers":false}},"9":{"type":"public", "applicationId":9,"appDefinitionId":"12c62b0d-d201-1791-1b0c0eefee42cac6","appDefinitionName":"Blogger Feed","instance":"451OuisWPXgSoQyq4gH3GyGCMLNv_QL8V5gZITS8Yac.e yJpbnN0YW5jZUlkIjoiMTMxYWJmYWEtZjUzMC1iN2MwLTVmODctYzkxN DExMzQ0YjlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0OjA3Ljc4 Mi0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMjA0LzMxNDkz IiwiZGVtb01vZGUiOmZhbHNlfQ","sectionUrl":"http://blogger.apps.wix.com/vi ew","sectionPublished":true,"sectionMobilePublished":false,"sectionDefaultPage" :"","sectionRefreshOnWidthChange":true,"widgets":{"12c62b32-774e-c0c588573c265a8d7166":{"widgetUrl":"http://blogger.wix.codeoasis.com/view","widgetId ":"12c62b32-774e-c0c5-88573c265a8d7166","published":true,"mobilePublished":false}},"appRequirements":{ "requireSiteMembers":false}}},"runningExperiments":{"CorsContactForm":"Ne w","verifyPremium":"New","NoAnchorsFromServer":"New","ViewerRefactor":" New","PageHeightFix":"New","WixAppsDirection":"new","EcomExp1":"New"," EcomExp3":"New","mobileSiteWidth":"New","BackgroundSRZ":"New","JITPag eLoader":"New","SMPasswordPoundCharFix":"New","ImageLoadPerformance": "New","RichTextPresets":"New","WixAppsPage":"new","TPA3DGallery":"new", "MobileSliderGallery":"New","RefreshFrameOnTransition":"New","useClientNe wDeployViewer":"true","EcomTax":"New","NewFetchPolicy":"New","NBC_W CD":"new","tpaartifact":"new","ChangeDefaultYouTubeVideo":"new","mediaGal leryFrame":"New","WixAppsLayoutFixes":"new","AutoPlayFix":"New","SyncW ixify":"New","QuickActionsMenus":"New","SMOwnerLogoutFix":"New","Mobi leEcomViews":"New","EcomSocial":"New","PageDuplicateLinksFix":"new","M obileBackgroundSize":"New","MainPageHash":"New","WixAppsContentResize" :"new","QuickActionsHideSubPagesOfHiddenParent":"New","bgimagestrip":"ne w","WixAppsApplicationData":"New","RenderPerf":"new","PageManagerRefact or":"new","FixMissingSkins":"New","SvSessionFix":"new","RichText2":"New"," NBC_VerticalLine":"New","SiteVersion":"new","MobileZoom":"New","LimitRe cursiveDDM":"New","MobileViewerQuickActions":"New","GalleryFlick":"New ","InnerStylesFix":"New","custompreviewbehavior":"new","ActivityReporter":"n ew","DynamicCSM":"new","MaximumComponentHeight":"New","twitterapipatc h":"new","SiteMembersCommon":"New","safari5menufix":"New","firsttimevisit oreditoruipreview":"New","PageLoadReport":"New","SiteJumpFix":"new","Foot erHeightFix":"New","Mobileviewercomponents":"New","PostSignupUrlParam":" New","HtmlComponentRelativePath":"New","EcomRepo":"New","FixViewport" :"new","tpanewsettings":"new","NBC_HorizontalLine":"New","URM4":"New"," AutoResizeEvent":"new","synclayout":"New","SMForgot_Password":"New","Fa cebookCommentFix":"New","tpaglued":"new","pixelPerfectEditorTabs":"New"}, "languageCode":"en","scriptsCacheKiller":1,"siteMetaData":{"preloader":{"uri":" d1e339_65dcaf8a17f4b301ac424eac4920b47b.jpg"},"hasMobileStructure":false," quickActions":{"socialLinks":[],"colorScheme":"light","configuration":{"quickAc tionsMenuEnabled":true,"navigationMenuEnabled":true,"phoneEnabled":true,"em ailEnabled":true,"addressEnabled":true,"socialLinksEnabled":false}}}}; var publicModel = {"externalBaseUrl":"http://venkeerthana2010.wix.com/venkateswaran2010","dom ain":"wix.com","premiumFeatures":[],"favicon":"","suppressTrackingCookies":tr

37

ue,"pageList":{"masterPage":["http://static.wixstatic.com/sites/d1e339_b931d992 7a7e83cfb18666a04e8d0624.json.z?v=2","http://archive.wix.com/sites/d1e339_b9 31d9927a7e83cfb18666a04e8d0624.json.z?v=2","http://publicorigin.wix.com/wix -public-htmlrenderer/page/d1e339_b931d9927a7e83cfb18666a04e8d0624.json"],"pages":[{"p ageId":"c1vs8","title":"resume","urls":["http://static.wixstatic.com/sites/d1e339_0 7b1263a435e2fb807d6bf38bcc49c92.json.z?v=2","http://archive.wix.com/sites/d1 e339_07b1263a435e2fb807d6bf38bcc49c92.json.z?v=2","http://publicorigin.wix. com/wix-public-htmlrenderer/page/d1e339_07b1263a435e2fb807d6bf38bcc49c92.json"]},{"pageId":" cuct","title":"CONTACT US","urls":["http://static.wixstatic.com/sites/d1e339_12b793cdaf5f63cff0a30703a 6c3373a.json.z?v=2","http://archive.wix.com/sites/d1e339_12b793cdaf5f63cff0a3 0703a6c3373a.json.z?v=2","http://publicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_12b793cdaf5f63cff0a30703a6c3373a.json"]},{"pageId":"c qkj","title":"NewS","urls":["http://static.wixstatic.com/sites/d1e339_385e00cf6b0 9b201d14e2621bfa4bc9b.json.z?v=2","http://archive.wix.com/sites/d1e339_385e 00cf6b09b201d14e2621bfa4bc9b.json.z?v=2","http://publicorigin.wix.com/wixpublic-htmlrenderer/page/d1e339_385e00cf6b09b201d14e2621bfa4bc9b.json"]},{"pageId":" crhr","title":"Skills ","urls":["http://static.wixstatic.com/sites/d1e339_530a1b016181793194e4037eb5 33cc12.json.z?v=2","http://archive.wix.com/sites/d1e339_530a1b016181793194e 4037eb533cc12.json.z?v=2","http://publicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_530a1b016181793194e4037eb533cc12.json"]},{"pageId":" c1k0i","title":"English","urls":["http://static.wixstatic.com/sites/d1e339_59a3cc4c 7b3a3263307e8be466352917.json.z?v=2","http://archive.wix.com/sites/d1e339_5 9a3cc4c7b3a3263307e8be466352917.json.z?v=2","http://publicorigin.wix.com/wi x-public-htmlrenderer/page/d1e339_59a3cc4c7b3a3263307e8be466352917.json"]},{"pageId":" c1313","title":"Jobs with 10th Class Qualification ","urls":["http://static.wixstatic.com/sites/d1e339_6498675658a9cedcb5eb2a1acf6 289ca.json.z?v=2","http://archive.wix.com/sites/d1e339_6498675658a9cedcb5eb 2a1acf6289ca.json.z?v=2","http://publicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_6498675658a9cedcb5eb2a1acf6289ca.json"]},{"pageId":"c 1cdx","title":"JOB & REQUIRENTS","urls":["http://static.wixstatic.com/sites/d1e339_be511046bbae5f 9c369d9cf398562920.json.z?v=2","http://archive.wix.com/sites/d1e339_be51104 6bbae5f9c369d9cf398562920.json.z?v=2","http://publicorigin.wix.com/wixpublic-htmlrenderer/page/d1e339_be511046bbae5f9c369d9cf398562920.json"]},{"pageId":" c115k","title":"ABOUT OUR INSTITUE","urls":["http://static.wixstatic.com/sites/d1e339_f5538c9b42a2ad248 1746477ed43d02a.json.z?v=2","http://archive.wix.com/sites/d1e339_f5538c9b42 a2ad2481746477ed43d02a.json.z?v=2","http://publicorigin.wix.com/wix-publichtmlrenderer/page/d1e339_f5538c9b42a2ad2481746477ed43d02a.json"]},{"pageId":" mainPage","title":"HOME","urls":["http://static.wixstatic.com/sites/d1e339_fc445 99e1f7d4a4720cc35546284b70f.json.z?v=2","http://archive.wix.com/sites/d1e339 _fc44599e1f7d4a4720cc35546284b70f.json.z?v=2","http://publicorigin.wix.com/

38

wix-public-htmlrenderer/page/d1e339_fc44599e1f7d4a4720cc35546284b70f.json"]}],"mainPageI d":"mainPage"},"siteRevision":214,"timeSincePublish":2540405938,"adaptiveMo bileOn":false}; var serviceTopology = {"serverName":"apu2.aus.wixpress.com","cacheKillerVersion":"1","staticServerU rl":"http://static.wix.com/","usersScriptsRoot":"http://static.wix.com/services/wixusers/2.232.0","biServerUrl":"http://frog.wix.com/","userServerUrl":"http://users. wix.com/","billingServerUrl":"http://premium.wix.com/","mediaRootUrl":"http:// static.wixstatic.com/","logServerUrl":"http://frog.wix.com/plebs","monitoringServ erUrl":"http://TODO/","usersClientApiUrl":"https://users.wix.com/wixusers","publicStaticBaseUri":"http://static.wix.com/services/wixpublic/1.36.0","basePublicUrl":"http://www.wix.com/","postLoginUrl":"http://ww w.wix.com/create/myaccount","postSignUpUrl":"http://www.wix.com/new/account","baseDomain":"wi x.com","staticMediaUrl":"http://static.wixstatic.com/media","staticAudioUrl":"htt p://media.wix.com/mp3","emailServer":"http://assets.wix.com/commonservices/notification/invoke","blobUrl":"http://static.parastorage.com/wix_blob"," htmlEditorUrl":"http://editor.wix.com/html","siteMembersUrl":"https://users.wix. com/wix-sm","scriptsLocationMap":{"ckeditor":"http://static.parastorage.com/services/ckeditor/1.36.0","bootstrap":"http://static.parastorage.com/services/bootstrap/2.604.9 ","sitemembers":"http://static.parastorage.com/services/sm-jssdk/1.29.0","ecommerce":"http://static.parastorage.com/services/ecommerce/1.65. 0","langs":"http://static.parastorage.com/services/langs/2.169.0","wixapps":"http:/ /static.parastorage.com/services/wixapps/2.239.1","verifypremium":"http://static.p arastorage.com/services/experiments/verifypremium/1.7.0","web":"http://static.pa rastorage.com/services/web/2.604.9","core":"http://static.parastorage.com/services /core/2.604.9","tpa":"http://static.parastorage.com/services/tpa/2.594.0","skins":"h ttp://static.parastorage.com/services/skins/2.604.9"},"developerMode":false,"user FilesUrl":"http://static.wix.com/","staticHTMLComponentUrl":"http://static.usrfil es.com/","secured":false,"ecommerceCheckoutUrl":"https://www.safercheckout.com/","publicStaticsUrl":"http://static.wix.com/services/wixpublic/1.36.0","staticDocsUrl":"http://media.wix.com/ugd"}; var siteHeader = {"id":"12f73b1e-4078-3a21-efd2-2a77ba06daaa", "userId":"d1e33924-d1ff-4e9d-8b4e-29bb0cd79e0a"}; var siteId = siteHeader.id; var configUrls = serviceTopology; var debugMode = "nodebug"; var viewMode = (rendererModel.previewMode) ? 'preview' : 'site'; var googleAnalytics = "" ; </script> <meta name="fragment" content="!"/> <!-- DATA --> <script type="text/javascript">

39

var adData = {"topLabel":"<span class=\"smallMusa\">(Wix-Logo) </span>Create a <span class=\"smallLogo\">Wix</span> site!","topContent":"100s of templates<br />No coding needed<br /><span class=\"emphasis spacer\">Start now >></span>","footerLabel":"<div class=\"adFootBox\"><div class=\"siteBanner\" ><div class=\"siteBanner\"><div class=\"wrapper\"><div class=\"bigMusa\">(Wix Logo)</div><div class=\"txt shd\" style=\"color:#fff\">This site was created by </div> <div class=\"txt shd\"><a href=\"http://www.wix.com?utm_campaign=vir_wixad_live\" style=\"color:#fff\"> WIX.com. </a></div> <div class=\"txt shd\" style=\"color:#fff\"> Create your own for FREE <span class=\"emphasis\"> >></span></div></div></div></div></div>","adUrl":"http://www.wix.com/html5 webbuilder/400?utm_campaign=vir_wixad_live"}; var usersDomain = "https://users.wix.com//wix-users"; </script> <script src="http://static.wix.com/services/wixusers/2.232.0/client/js/userApi_v2.js?cacheKiller=1"></script> <script type="text/javascript"> var userApi = UserApi.getInstance().init({ "usersDomain":"http://users.wix.com//wix-users", "corsEnabled":false, "dontHandShake":true, "urlThatUserRedirectedFrom":"$" }); </script> </head> <body> <script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script> <link rel="stylesheet" type="text/css" href="http://static.wix.com/services/web/2.604.9/css/wysiwyg/preloader.css"> <div id="viewer_preloader"> <p>Loading</p> <h2>study</h2> <div id="userLogo" style="background:url('http://static.wixstatic.com/media/d1e339_65dcaf8a17f4b3 01ac424eac4920b47b.jpg_256') no-repeat 50% 50%;background-size:contain;" ></div> <div id="preloader"></div> </div> <script type="text/javascript" src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/mobil e_utils.js"></script>

40

<script type="text/javascript" src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/preloa der.js"></script> <link rel="stylesheet" type="text/css" href="http://static.wix.com/services/web/2.604.9/css/wysiwyg/quick_actions.css" > <style type="text/css"> .dark .quick-actions-sprite, .dark .quick-actions-sprite-before:before, .dark .quick-actions-sprite-after:after{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quickActio n_darkSprite.png); } .dark .quick-actions-bg-gradient{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quickActio ns_dark_bg.png); } .light .quick-actions-sprite, .light .quick-actions-sprite-before:before, .light .quick-actions-sprite-after:after{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quickActio n_lightSprite.png); } .light .quick-actions-bg-gradient{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quickActio n_lightSprite.png); } .quick-actions-drop-up-x { background-image: url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/x.png); } </style> <div id="quick-actions-menus-container"> <div id="qa-drop-up-pages" class="quick-actions-drop-up-wrapper"> <div class="quick-actions-drop-up-back"></div> <div class="quick-actions-drop-up quick-actions-drop-up-open"> <div class="quick-actions-drop-up-header"> <span class='quick-actions-drop-up-title'>Pages</span>

41

<span class='quick-actions-drop-up-x'></span> </div> <ul id="qa-drop-up-pages-list"> </ul> </div> </div> </div> <div id="quick-actions" class="quick-actions light"> <div id="quick-actions-drag-handle" class="quick-actions-drag-handle quickactions-sprite"> &nbsp </div> <div id="quick-actions-bar" class="quick-actions-bar quick-actions-bg-gradient"> <ul id="qa-menu" class="quick-actions-menu"> <li id="quick-actions-pages-button" class="qa-new-menus-hide quick-actionsitem quick-actions-site-nav quick-actions-sprite disabled"> <div class="quick-actions-site-nav-button quick-actions-sprite"> <a class="quick-actions-button quick-actions-sprite"></a> </div> </li> <li class="quick-actions-item quick-actions-call quick-actions-sprite"> <a id="quick-actions-call" class="quick-actions-button quick-actions-sprite" href="#">Phone number</a> </li> <li class="quick-actions-item quick-actions-email quick-actions-sprite"> <a id="quick-actions-email" class="quick-actions-button quick-actions-sprite" href="#">Email</a> </li> <li class="quick-actions-item quick-actions-location quick-actions-sprite"> <a id="quick-actions-location" class="quick-actions-button quick-actions-sprite" href="#">Location</a> </li> </ul> </div> </div> <script src="http://static.wix.com/services/web/2.604.9/libs/hammer.min.js"></script> <script src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/quick

42

_actions_new_menus.js"></script> <script> if (MobileUtils.isMobile() && MobileUtils.isViewportOpen()){ WQuickActions.element.style.visibility = "visible"; WQuickActions.initialize( "venkeerthana2010@gmail.com", "9976316089", "68/4 singapoor nagar" ); } else if(WQuickActions && WQuickActions.element){ WQuickActions.element.style.display = 'none'; } </script> <!-- debug mode=nodebug --> <!-- anc2 --> <script type="text/javascript"> var anchors = {}; </script> <script src="http://static.parastorage.com/services/bootstrap/2.604.9/javascript/bootstrap. min.js"></script> <script src="http://static.parastorage.com/services/web/2.604.9/deployviewer.min.js"></s cript> <div comp="wysiwyg.viewer.components.WixAds" skin="wysiwyg.viewer.skins.wixadsskins.WixAdsWebSkin" id="wixFooter"></div> <script> window.define && define.resource('status.structure.loaded', true); </script> <script type="text/javascript">if (!NREUMQ.f) { NREUMQ.f=function() {NREUMQ.push(["load",new Date().getTime()]);var e=document.createElement("script");e.type="text/javascript";e.src=(("http:"===do cument.location.protocol)?"http:":"https:") + "//" + "js-agent.newrelic.com/nr100.js";document.body.appendChild(e);if(NREUMQ.a)NREUMQ.a();};NREUM Q.a=window.onload;window.onload=NREUMQ.f;};NREUMQ.push(["nrfj","beac on6.newrelic.com","c99d7f1ab0","1963269,1963270","ZFAHNkNYXUBQVEUKX F0aKDRyFmRWU39FDl9hUAsGVEtWQR9FVA1XVkc=",0,14,new Date().getTime(),"","","","",""]);</script> </body>

43

</html>

Design view of the web page

44

45

46

47

48

BIBLIOGRAPHY

Books referred:

More asp.net (teach yourself) Guide to asp.net

- lowell mauer - peter norton,

Fundamentals of database system - ramez Complete guide to sql server - peter norton.

Web links referred: 2. Http://www.sourcecode.com 3. http://www.venkateswaran2010.webnode.com 4. Http://www.dbms.co.in 5. Http://a1code.com 6. W3c.com 7. Sourceforge.com 8. Wix.com

49

Anda mungkin juga menyukai