answersLogoWhite

0

Active Server Pages

Active Server Pages (ASP) was first released in 1996, it is a web application framework. It was created by Microsoft.

73 Questions

What are the advantages and disadvantages of Active Server Pages?

User Avatar

Asked by Wiki User

The advantages of Active Server Pages are that they provide a powerful scripting language and it is compatible with HTML. The disadvantages of Active Server Pages are that the coding is complex and the connections are stateless.

What is the concept of active server page?

User Avatar

Asked by Wiki User

An Active Server Page has two components -- the HTML component which constructs the visual representation and the Code Behind Page which has the Visual Basic code that provides the functionality. In the Code Behind Page, the form is declared as

Partial Class ProductNew

InheritsSystem.Web.UI.Page

This means that the original form is a member of the page class but it is simply a container that doesn't do anything. The Partial class inherits the characteristics of the page but then adds the functionality of the code.

How many cycle in 1 sec?

User Avatar

Asked by Wiki User

Whatever the number is, it's called the "frequency" of that particular wave.

It can be almost anything. There are things in everyday life that have frequencies from

about 1 cycle per second to maybe 1,000,000,000,000,000,000 cycles per second.

What is active server pages and scripts?

User Avatar

Asked by Wiki User

Active Server Pages is also known as ASP. ASP helps create web pages that contain HTML code and text and are created dynamically. Dynamic web pages are those contain dynamically generated content when a page is requested. ASP supports server-side scripting and users IIs to process the code when an end user sends request to access the web page.

Steps to create: firstly write the code in any text document and add the .asp extension to document name for creating a web page. After creating a web page,you need to ass code to the web page before sending it to Internet. Sending a web page to internet enables an end user to access the page using Internet browsers. The programers can use two languages, VB Scriptand JScript to write code to the web page ASP only provides the environment thet process the code.

LIFECYCLE OF ASP:

  • Page request to internet: Refers to a stage at which an end user sends a request to internet for accessing the web page.
  • Page request to IIS: Refers to a stage at which Internet forward the page request to IIS for processing.
  • Accessing code file: Refers to a stage at which IIS request the file system to access the file containing the code
  • Returning code file: Refers to a stage at which file system returns the requested file IIS.
  • Returning the output to Internet: Refers to a stage at which IIS converts the code in HTML format and sends the HTML code to internet.
  • Returning the output to workstation: Refers to Stage at which Internet displays the output on screen computer.

Structure of ASP:

ASP is divided in two parts:

  • Visual Component: it includes a web page
  • logic: it contains the HTML code that use to interact with the page

What is expansion of xampp?

User Avatar

Asked by Wiki User

Xampp (X-os,apache mysql Php Perl)

X-OS means in runs in all OS

How do find factorial using vbscript?

User Avatar

Asked by Wiki User

<html>

<script language="vbscript">

n=cint(inputbox("Enter a number"))

dim f

f=1

if n<0 then

Msgbox "Invalid number"

elseif n=0 or n=1 then

MsgBox "The factorial of given number "&n&" is :"&f

else

for i=n to 2 step -1

f=f*i

next

MsgBox "The factorial of given number "&n&" is :"&f

end if

</script>

</html>

What is the main function of sysexe files?

User Avatar

Asked by Wiki User

You mean 'SYS.EXE'? It is used under MS-DOS to make a floppy bootable.