answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How ASP page is processed with example?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How asp.net webpages get processed from the time we type web address in local host using IIS server to the response page we get.?

* When a browser requests an ASP file, IIS passes the request to the ASP engine. The ASP engine reads the ASP file, line by line, and executes the scripts in the file. Finally, the ASP file is returned to the browser as plain HTML


What dose asp stand for?

ASP stands for Active Server Pages.


How do you differentiate an ISP from an ASP?

ISP = Internet Service Provider ASP = Active Server Page


What is the Full form of asp?

Active Server Page


Write an ASP code that will display the source code of the web page in the browser window?

Write an ASP code that will dislplay the source code of the web page in the Browser window.


What does the term index ASP refer to?

index ASP is generally the main page or file for any website operating or using Active Server Pages as a web application framework. This is true of both Classic ASP, ASP 2.0 and ASP 3.0.


What asp stand for programming language?

Active Serve Page


What is asp?

ASP means, Active Server Pages. An Active Server Page is a web page that includes program code that is processed on a Microsoft web server before the page is sent to the user. The code is typically used to access data from a database and that data is then built into the returned web page "on the fly". ASP was developed by Microsoft and is a feature of Microsoft's web server software, but the dynamically generated pages can be viewed by almost any browser. Because at run-time the code is translated to html+JavaScript code


How do you execute asp files?

(Taken from fileinfo.com) ASP (Active Server Page) files are server-generated web pages that may contain scripts written in VBScript, C# or Javascript; parsed on the server, which generates HTML that is sent to the client's browser; commonly used by ASP.NET sites and websites hosted on Microsoft IIS-based servers. Since ASP pages are processed on the server, website visitors do not see the actual ASP code, just the HTML generated from the scripts within the page. ASP pages typically use the ".asp" extension rather than ".html". So, to answer your question, use an internet browser such as Chrome or Internet Explorer (but the only thing you should be using internet explorer for is getting a real browser).


What is the expansion of asp?

Active server pages


Do you have to use HTML programming with asp hosting?

No, HTML programming is used for HTML websites that stay the same. ASP hosting allows for dynamic websites that change the way the viewer experiences them--and it uses a different type of programming. ==== Here is an example of what I mean... ASP page, called: hw.asp; contains the following code: <% Response.Write("<p>Hello, world</p>") %> NOTE: ASP/Active Server Pages code is surrounded by a open and close pair of: <%...ASP code goes inside here...%> Now, when the user types into their browser the URL for that page... http://www.somewebaddress.com/hw.asp ...the web server computer will execute the ASP code on the server itself; then, return back to the client browser the resulting HTML codes...; so, this is what the user will see inside of their browser whenever they chose: View Source... <p>Hello, world</p> NOTE: They do NOT get to see the ASP code: <%...%> inside of their web browser at all. This means that because ASP code is executed entirely server side; thus, it really doesn't matter what platform calls the page...Linux/Max/Windows...none of these platforms will need to understand ASP code...instead, they only need to understand HTML which is being returned back to their web browser software that called the ASP page: (.asp).


What type of events does asp net hosting hold?

There are a few types of events that ASP net can hold. One of them is the Page_Load, which is when a page will automatically load once triggered. A second type of event is when the page loads everytime, regardless of being triggered or not.