ASP...urgent

Status
Not open for further replies.

Starshine

Legend Killer
Messages
14,423
Reaction score
0
Points
0
Um ... I don't believe you can.
I think I read another thread regarding this in the past and saw that it couldn't happen.

Maybe someone can enlighten us both?
 

joandajer

New Member
Messages
198
Reaction score
0
Points
0
i have an asp script, can i use it on my hosting with no pro?
 

Jake

Developer
Contributors
Messages
4,057
Reaction score
5
Points
0
it looks like post doesnt work but i tried alot of other things and they all worked
 

Jake

Developer
Contributors
Messages
4,057
Reaction score
5
Points
0
true, but it should be on the free server too... i'll see what i can find out
 
Last edited:

Starshine

Legend Killer
Messages
14,423
Reaction score
0
Points
0
This is what I tried to say eariler.

Although I can't find the thread ( as it wasn't aptly named ASP help ) ... it was already asked and was told that ASP wasn't on the free servers.
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
StarShine said:
This is what I tried to say eariler.

Although I can't find the thread ( as it wasn't aptly named ASP help ) ... it was already asked and was told that ASP wasn't on the free servers.

Yes only on paid server, but Jake was confugisng all of us
 
Last edited:

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
Jake, look at your source code:

Code:
<html>
<body>
<form action="sample.asp" method="post">
Your name: <input type="text" name="fname" size="20" />
<input type="submit" value="Submit" />
</form>
<%
dim fname
fname=Request.Form("fname")
If fname<>"" Then
      Response.Write("Hello " & fname & "!<br />")
      Response.Write("How are you today?")
End If
%>
</body>
</html>

its way off
 
Last edited:

theghost14

New Member
Messages
12
Reaction score
0
Points
1
ASP is mostly on paid servers only now.If you find a free host that allows it ill be surpized.
 
Status
Not open for further replies.
Top