nigna123456
New Member
- Messages
- 7
- Reaction score
- 0
- Points
- 0
how do i get asp vbscrpit functions to work on my site here ?
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Animal Questions</title>
</head>
<body>
<h1>Are you a Cat Person or a Dog Person?</h1>
<p>I am a <a href="animal_home_page.asp?mypet=Cat">Cat</a> person.</p>
<p>I am a <a href="animal_home_page.asp?mypet=Dog">Dog</a> person.</p>
</body>
</html>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Person Home Page</title>
</head>
<body>
<h1>The <%= Request.QueryString("mypet") %> Person Home Page</h1>
<p>You are a <%= Request.QueryString("mypet") %> person.</p>
</body>
</html>