Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

ASP 语法


我们所有的示例都以红色显示 ASP 代码。

这使您更容易理解 ASP 的工作原理。


ASP 使用 VBScript

ASP 中的默认脚本语言是 VBScript。

脚本语言是一种轻量级的编程语言。

VBScript 是 Microsoft Visual Basic 的轻量级版本。


ASP 文件

ASP 文件可以是普通的 HTML 文件。此外,ASP 文件还可以包含服务器脚本。

用 <% 和 %> 括起来的脚本在服务器上执行。

Response.Write() 方法由 ASP 用于将输出写入 HTML。

以下示例将“Hello World”写入 HTML

示例

<!DOCTYPE html>
<html>
<body>
<%
Response.Write("Hello World!")
%>

</body>
</html>
显示示例 »

VBScript 不区分大小写。Response.Write() 可以写成 response.write()。


在 ASP 中使用 JavaScript

要将 JavaScript 设置为网页的脚本语言,您必须在页面顶部插入语言规范

示例

<%@ language="javascript"%>
<!DOCTYPE html>
<html>
<body>
<%
Response.Write("Hello World!")
%>

</body>
</html>

本教程使用 VBScript 脚本语言。



更多示例

Response.Write() 有一个简单的快捷方式。您可以使用等号 (=) 代替。

以下示例也将“Hello World”写入 HTML

示例

<!DOCTYPE html>
<html>
<body>
<%
="Hello World!"
%>

</body>
</html>
显示示例 »

HTML 标签可以是输出的一部分

示例

<!DOCTYPE html>
<html>
<body>
<%
Response.Write("<h2>您可以使用 HTML 标签来格式化文本!</h2>")
%>

</body>
</html>
显示示例 »

HTML 属性可以是输出的一部分

示例

<!DOCTYPE html>
<html>
<body>
<%
Response.Write("<p style='color:#0000ff'>此文本已设置样式。</p>")
%>

</body>
</html>
显示示例 »

VBScript 示例

本教程包含许多 VBScript 示例。

VBScript 示例


VBScript 参考

本教程包含完整的 VBScript 参考。

VBScript 参考


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.