answersLogoWhite

0

The choice of VBscript in ASP versus other options is mostly personal perferance. Using VBscript allows you access to thousands of functions and operators to help you code easier, and more effectivley.

A personal preference towards VBscript when coding in ASP may be because it follows the same style of programming. For example, a Javascript operator might look like this:

&&

Whereas an asp operator will be written as:

And

VBscript follows this same methodology, and make for an easier "mesh" with the natural coding of ASP.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Can you use javascript with asp?

Although ASP is usually written with VBScript, JavaScript may be used if the ASP framework was compiled with JS functionality.


How do you transfer VBScript variable value to JavaScript function as parameter in ASP?

An example answer can be found: http://www.planet-source-code.com/URLSEO/vb/scripts/ShowCode!asp/txtCodeId!8503/lngWid!4/anyname.htm


What programming languages don't need an ide?

HTML, JAVASCRIPT, ASP, and PHP are good ones. There is also VbScript and jQuery. They are all coded in Notepad.


What is the difference between asp and aspx?

ASP is Script based language while ASP.NET Compliled programming language ASP Support ADO Data Access Technology while ASP.NET Support ADO.NET ASP Support only VBScript while ASP.NET support VB.NET, C# and other .NET CTS Language. For more information on this topic visit . http://www.programmer2programmer.net/tips/interview_question/asp_dot_net.aspx


How does a VBScript work?

VBScript, like Javascript is an interactive scripting language that works within HTML. For more information on how to use VBScript, visit the W3 Schools website by clicking on the related link.


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


How asp differs from client side scripting technologies?

ASP runs on the server. This means that ASP has access to thing like databases and file read/write that a client side script traditionally does not have. ASP doesn't rely on the code being intact in your users browser. Instead, it runs on the server, and returns the output. You can use the developer tools adjust the client side code. That makes it inherently insecure. Add to that the fact that ASP, like JSP, PHP, or any of a dozen other client side languages, is a complete language, with all the abilities of your traditional programming languages. JavaScript is limited by it's having to conform to the browsers security rules.


When was VBScript created?

VBScript was created in 1996.


When do you use net?

we use .net for providing plateform for asp, asp is scripting language


How ASP page is processed with example?

An ASP (Active Server Pages) page is processed on the server side. When a user requests an ASP page, the server executes the embedded script (usually written in VBScript or JScript) and generates HTML content, which is then sent back to the client's browser. For example, if you have an ASP page that queries a database for user information, the server will run the script, fetch the data, and output it as standard HTML for the user to view. This allows for dynamic content generation based on user input or database state.


What is vbscript?

! VBScript is a Microsoft created program. It stands for Visual Basic Scripting


What is the difference between ASP.net and ASP?

The main difference between ASP and ASP.Net is that ASP is interpreted whereas, ASP.NET is compiled. This implies that since ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted. On the other hand, ASP.NET uses.NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate Language. Below some other difference are given. 1. Classic ASP uses a technology called ADO to connect and work with databases. ASP.NET uses the ADO.NET technology. 2. ASP has Mixed HTML and coding logic where in asp.net html and coding part are separated by code behind files. 3. ASP.NET purely object oriented whereas ASP is partially object oriented. 4. For ASP No in-built support for XML whereas in ASP.NET full XML Support for easy data exchange. I think above details help you a lot. I hosted my website at Asp.net hosting of Mywindowshosting.com.