answersLogoWhite

0


Best Answer

ASP is for generating dynamic data driven websites. The data it sends to the user is in the form of HTML.

HTML is the markup language which allows your browser to render a webpage into a particular format through the use of CSS.

At the end of the day, ASP makes use of HTML to make interactive websites

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why asp is better than HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can ASP code be put in HTML?

ASP can't be put 'in' HTML. ASP can be written in files where HTML is written. ASP can also output HTML.


Is there a better alternative for a small website than ASP hosting?

Yes, there are other places that are better than ASP hosting to host a small website, such as go-daddy.


What is an HTML converter?

An HTML Converter is a program that will take your HTML files and modify them to be able to be used with PHP, Javascript or ASP.


What does the login mean when followed by asp?

The ASP stands for active server pages. It is a type of scripting. Login scripts normally use them to communicate with the login server easily. It is easier and more effective than HTML.


How does dynamic HTML relate to HTML and CSS?

There is no such thing as Dynamic HTML. However, you can dynamicly display HTML with the use of some dynamic languages - like PHP or ASP.


Can you connnect databases to HTML pages?

Yes; you will need to use PHP or ASP to connect to your database and display its content in an HTML page.


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 does ASP script return to the browser?

HTML (or JavaScript, CSS, PDF, CSV, whatever)


Which HTML tag do you need to let other people edit your site?

Letting other people edit the HTML is going to require some heavy lifting on the server-side. That means a more advanced language than HTML, like ASP, PHP, or Java. There is no HTML tag for this, because writing to the server is outside the scope of HTML.


How do you create forms using ASP and HTML?

You can use a WYSIWYG html editor to drag and drop html form controls and program their function. An html editor such as Microsoft Front Page or Adobe DreamWeaver can do these tasks.


What are the different controls available in aspnet?

There are Three types of controls available in ASP .Net. 1. HTML Controls (Traditional HTML Tags) 2. Web Server Controls (New ASP .Net Tags) 3. Validation Server Controls (To validate Inputs)


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).