Tim said:
Hi Evertjan,
I haven't done anything yet. I am just trying to find a solution (by
coding) for how to display images and wav files on the internet. But
as a newbie, I don't know how to use ASP/HTML to display them, i.e.,
using a loop. I know vb but not HTML. Any help would be appreciated.
Thanks,
ASP is a technology that generates HTML to be sent to the client. So your
first step is to understand how to use HTML to display an image on the
client (hint: use an IMG tag). Create an HTML page that displays hard-coded
images.
Once you see what the result is supposed to look like in a static html page,
the next step is to create an asp page whose server-side code generates that
html. Remember, html is just a string with various keywords (tags) that
instruct the browser to do something. So you will be doing a lot of
string-handling, with which you should be very familiar from your VB
experience. vbscript is similar to VB, but there are differences. See
http://msdn.microsoft.com/library/en-us/script56/html/vsgrpNonFeatures.asp
and
http://msdn.microsoft.com/library/en-us/script56/html/vsgrpVBSFeatures.asp.
The entire scripting documentation can be downloaded from
http://tinyurl.com/7rk6
There used to be many sites that can help you understand the server-side,
client-side paradigm involved with internet development, including
www.aspfaq.com
www.asp101.com
www.4guysfrom rola.com
www.learnasp.com
Unfortunately, the latter 3 sites have shifted their focus to the new
ASP.Net technology. It is gtting harder fingclsi sp informatin out there.
At this point in your career,you might want to consider learning ASP.Net
instead of diving into classic ASP (to which this newsgroup is devoted). If
you take that path, you will get more help at
microsoft.public.dotnet.framework.aspnet.
Bob Barrows