how do i get asp vbscrpit functions to work on my site here

Status
Not open for further replies.

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
Is it asp.net you're asking about? What didn't you understand about the tutorial link I responded with in your first thread?
 
Last edited:

nigna123456

New Member
Messages
7
Reaction score
0
Points
0
i understand that but is asp vbscript compatable with this hosting sever ?
here are the scripts?


Code:
<%@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>

Code:
<%@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>
 
Last edited by a moderator:

calistoy

Free Support Volunteer
Community Support
Messages
5,602
Reaction score
87
Points
48
Asp.net can be used with our servers through the mono project that's already installed. I've given you all of the info about that I can find. Is there anything about it that you don't understand?
 

nigna123456

New Member
Messages
7
Reaction score
0
Points
0
read scripts ? maybe there is a problem there also how do i save them after i finish makeing them do i save them

index.asp or something else?
 
Last edited:

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
ASP is not supported. Only ASP.net. Test your code with http://www.mono-project.com/MoMA to make sure that it's compatible with mono.

VBscript support is also not very good in mono. C# support is way better.
 
Last edited:
Status
Not open for further replies.
Top