ASP variables


  Translation results:

ASP (Active Server Pages) is a powerful tool for generating dynamic, interactive web pages.

ASP variablessyntax

Variables are used to store information.

ASP variablesexample

<!DOCTYPE html>
<html>
<body>
<%
dim name
name="Donald Duck"
response.write("My name is: " & name)
%>
</body>
</html>

Popular Recommendations

Home

Videos

Q&A