PDA

View Full Version : allowing others to upload


LifeOfTamir
07-27-03, 12:53 PM
Hello all.

here is the problem

I have a page on my website that is password protected, on the page i want there to be a form to allow people to upload files onto my webspace. Now i know there are lots of free asp scripts/classes to do this for me my only problem i have never used asp before, i have no idea what asp is, or anything else about asp. I 've tried to read instructions/turtorials but they're just not helping.

All i want is something as simple as it gets, nothing complicated i've been at this for about 4 hrs now...can sombody please put me out of my misery?

thank you

Shane
07-27-03, 08:21 PM
ASP is a server-side scripting environment. Unlike HTML, ASP pages get processed on the server. ASP code is placed between the <% %> tags. For example,


<html>
<head>
<title>My Site</title>
</head>
<body>
Hello...
<%
Response.Write("I was printed using ASP.")
%>
</body>
</html>


This would print "I was printed using ASP." on the screen.

ASP is not a programming language, though. ASP is just the environment. You can program ASP pages using VBScript and JScript. You can download others, but those are included.

It's going to take longer than 4 hours to figure out how to program ASP pages. I suggest getting a book or reading more tutorials.

Good luck.