473,327 Members | 1,920 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

showing image on the internet

Tim
Hi,
I need help to show the images and the wav files on the internet. Also, do
you think I should convert the wav files to MP3 for delivery faster on the
internet? I think I would save those files on the web server, save the their
locations to the db's tablesand declare recordset(s) to loop to show those
files on the webpage. Do you have ASP/HTML codes that help me to do that?
Thank you in advance for your help.
Dec 11 '05 #1
10 1459
=?Utf-8?B?VGlt?= wrote on 11 dec 2005 in
microsoft.public.inetserver.asp.general:
I need help to show the images and the wav files on the internet.
Also, do you think I should convert the wav files to MP3 for delivery
faster on the internet? I think I would save those files on the web
server, save the their locations to the db's tablesand declare
recordset(s) to loop to show those files on the webpage. Do you have
ASP/HTML codes that help me to do that? Thank you in advance for your
help.


What did you programme till now on your quest?
--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 11 '05 #2
Tim
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,
"Evertjan." wrote:
=?Utf-8?B?VGlt?= wrote on 11 dec 2005 in
microsoft.public.inetserver.asp.general:
I need help to show the images and the wav files on the internet.
Also, do you think I should convert the wav files to MP3 for delivery
faster on the internet? I think I would save those files on the web
server, save the their locations to the db's tablesand declare
recordset(s) to loop to show those files on the webpage. Do you have
ASP/HTML codes that help me to do that? Thank you in advance for your
help.


What did you programme till now on your quest?
--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 12 '05 #3
=?Utf-8?B?VGlt?= wrote on 12 dec 2005 in
microsoft.public.inetserver.asp.general:
"Evertjan." wrote:
=?Utf-8?B?VGlt?= wrote on 11 dec 2005 in
microsoft.public.inetserver.asp.general:
> I need help to show the images and the wav files on the internet.
> Also, do you think I should convert the wav files to MP3 for
> delivery faster on the internet? I think I would save those files
> on the web server, save the their locations to the db's tablesand
> declare recordset(s) to loop to show those files on the webpage. Do
> you have ASP/HTML codes that help me to do that? Thank you in
> advance for your help.
What did you programme till now on your quest?


[please do not toppost on usenet]
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,


Using HTML and serverside ASP code and clientside coding is a learning
process. I think your quest is to high for you. Firest try simpler tasks
for a year or two. Knowing VB is a pre, but unterstanding the interactions
of the above is something else.

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 12 '05 #4
Tim wrote:
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...onFeatures.asp
and
http://msdn.microsoft.com/library/en...BSFeatures.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

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Dec 12 '05 #5
Bob Barrows [MVP] wrote:
ASP.Net technology. It is gtting harder fingclsi sp informatin out


Wow, it looks like my keyboard chose that moment to screw me up. Combined
with my failure to proofread before clicking the Send button ...

This should read:
.... It is getting harder to find classic asp information ...
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Dec 12 '05 #6
Tim
Wow, thank you, Bob for your valuable information. Unfortunately, right now
the resource I have is just for ASP. I have to think about ASP.Net.
Thanks, Evertjan because you show me where I stand now. It would take me
longer than I guess to learn these stuff.
Tim

"Bob Barrows [MVP]" wrote:
Bob Barrows [MVP] wrote:
ASP.Net technology. It is gtting harder fingclsi sp informatin out


Wow, it looks like my keyboard chose that moment to screw me up. Combined
with my failure to proofread before clicking the Send button ...

This should read:
.... It is getting harder to find classic asp information ...
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Dec 12 '05 #7
=?Utf-8?B?VGlt?= wrote on 12 dec 2005 in
microsoft.public.inetserver.asp.general:
Thanks, Evertjan because you show me where I stand now. It would take me
longer than I guess to learn these stuff.


But do not despare, Tim, because the road is as rewarding as getting there.
And help is available on usenet on the way, as long as the helping is not
doing the job for you.

Getting a reasonable knowledge of HTML hypertext is the starting point.
ASP help thereafter in this HG.

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 12 '05 #8
not sure I would tell this guy to use/learn asp.net myself especially if he
has zero experiece

I sort of agree with these guys
http://www.powerasp.com/content/new/...-aspdotnet.asp

most importatnly asp.net is for real programmers
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
=?Utf-8?B?VGlt?= wrote on 12 dec 2005 in
microsoft.public.inetserver.asp.general:
Thanks, Evertjan because you show me where I stand now. It would take me
longer than I guess to learn these stuff.


But do not despare, Tim, because the road is as rewarding as getting
there.
And help is available on usenet on the way, as long as the helping is not
doing the job for you.

Getting a reasonable knowledge of HTML hypertext is the starting point.
ASP help thereafter in this HG.

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 12 '05 #9
Kyle Peterson wrote on 12 dec 2005 in
microsoft.public.inetserver.asp.general:
"Evertjan." <ex**************@interxnl.net> wrote in message
=?Utf-8?B?VGlt?= wrote on 12 dec 2005 in
Thanks, Evertjan because you show me where I stand now. It would
take me longer than I guess to learn these stuff.
But do not despare, Tim, because the road is as rewarding as getting
there.
And help is available on usenet on the way, as long as the helping is
not doing the job for you.

Getting a reasonable knowledge of HTML hypertext is the starting
point. ASP help thereafter in this HG.

not sure I would tell this guy to use/learn asp.net myself especially
if he has zero experiece
I surmize you are sure, Kyle, but I was not talking ASP.net, but ASP.
I sort of agree with these guys
http://www.powerasp.com/content/new/...-aspdotnet.asp

most importatnly asp.net is for real programmers


"real programmers" what's that?

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 12 '05 #10
ya, it was bob that was talking asp.net

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Kyle Peterson wrote on 12 dec 2005 in
microsoft.public.inetserver.asp.general:
"Evertjan." <ex**************@interxnl.net> wrote in message
=?Utf-8?B?VGlt?= wrote on 12 dec 2005 in

Thanks, Evertjan because you show me where I stand now. It would
take me longer than I guess to learn these stuff.

But do not despare, Tim, because the road is as rewarding as getting
there.
And help is available on usenet on the way, as long as the helping is
not doing the job for you.

Getting a reasonable knowledge of HTML hypertext is the starting
point. ASP help thereafter in this HG.

not sure I would tell this guy to use/learn asp.net myself especially
if he has zero experiece


I surmize you are sure, Kyle, but I was not talking ASP.net, but ASP.
I sort of agree with these guys
http://www.powerasp.com/content/new/...-aspdotnet.asp

most importatnly asp.net is for real programmers


"real programmers" what's that?

--
Evertjan.
The Netherlands.
(Replace all crosses with dots in my emailaddress)

Dec 12 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: John | last post by:
I am rotating images of different dimensions. My problem is that when a new image is displayed in a new position which had an image of a different dimension, the old image is first stretched to the...
2
by: michael solis | last post by:
When I open a web page with the following script the "CLfolder.JPG" file is supposed to show. For some reason I only see the image place holder. How can I get the CLfolder.JPG to show after the...
5
by: Peter | last post by:
Hello group, My Internet Explorer (version 6, on Wind. Mill.) suddenly stopped displaying XBM images, for no apparent reason. I now get the dreaded missing-image icon, where previously there would...
3
by: Richard | last post by:
I have an ASP.NET webapp that generates a shipping label for a customer. When the user clicks on the label preview gif or on a "Print..." submit button, the app will open another window with a...
10
by: bessington | last post by:
hey all, i'm having a rather bizarre problem.. the image tag i have declared in my xhtml is not showing in safari / konqueror but showing just fine in Firefox, IE, Opera... this is a complete...
7
by: needin4mation | last post by:
Hi, I have an Access 2002 - 2003 database. I am using Access 2003. Whenever I link an image all it shows is the filename. Not the image. Other versions of Access can link the image just fine. ...
8
by: Gabriella | last post by:
Hi, I have the CSS class below, and the image (pro.gif) is not showing on my page. It is showing ONLY where's some text in the div, but all I need is the image itself. ..pro {background-image:...
3
by: Sandeep Singh Sekhon | last post by:
I am developing an application in ASP.NET 1.1. on one page I allow the user to upload and delete the files to the server. When I delete the file, I physically delete the file from the location....
4
by: rsteph | last post by:
I've found a javascript menu download, I've been tweaking it within a testpage, and getting it to look just right. I finally got everything looking right, all I have to do is alter where the links...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.