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.

16 Questions

Do all web hosts allow the use of ASP?

Not all web hosts allow the use of ASP (Active Server Pages). Typically, ASP is supported by Windows-based hosting providers, as it relies on the Windows Server operating system and IIS (Internet Information Services) to function. However, many Linux-based hosts do not support ASP, focusing instead on technologies like PHP. When choosing a web host, it's essential to check their specifications to ensure they support the technologies you need.

How do you you lock a picture on word?

To lock a picture in Microsoft Word, right-click on the image and select "Wrap Text," then choose "In Front of Text" or "Behind Text." After that, right-click the image again, select "Size and Position," go to the "Position" tab, and check the box that says "Lock anchor." This will prevent the image from being moved inadvertently, allowing you to maintain its position within your document.

Why is there more such dependence in file approuch and less in the database?

In a file-based approach, data is often stored in discrete files, leading to tighter coupling between the application logic and the data format. This can create challenges in managing file dependencies, such as needing to update multiple files when data changes. In contrast, databases provide a structured environment with centralized data management, enabling more efficient data access and manipulation through queries, which reduces the risk of dependency issues. Additionally, databases support features like transactions and constraints that help maintain data integrity and reduce coupling.

What type of request is sent to the server when retrieving a webpage?

When retrieving a webpage, a client typically sends an HTTP GET request to the server. This request asks the server to provide the resource associated with a specific URL. The server then processes the request and responds with the requested webpage content, along with an appropriate status code indicating the result of the request.

What is active server page and personal home page?

Active Server Pages (ASP) is a server-side scripting technology developed by Microsoft that enables dynamic web page creation by embedding server-side scripts within HTML. It allows for the integration of various programming languages, primarily VBScript and JScript, to create interactive web applications. Personal Home Page (PHP), on the other hand, is a server-side scripting language primarily used for web development, allowing developers to embed code within HTML to generate dynamic content. While ASP is Microsoft-specific, PHP is open-source and widely used across different platforms.

What are the advantages and disadvantages of Active Server Pages?

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?

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?

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?

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?

Xampp (X-os,apache mysql Php Perl)

X-OS means in runs in all OS

How do find factorial using vbscript?

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

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