Show PIctures or MP3 files Ole Object

This is a discussion on "Show PIctures or MP3 files Ole Object" within the Classic ASP section. This forum, and the thread "Show PIctures or MP3 files Ole Object are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Classic ASP

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 2nd, 2003, 15:12
Junior Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to djaccess
Show PIctures or MP3 files Ole Object

smokie i would love to use that cart from red eye to sell more or less the same thing. But mine is going to have a radio station built into it. Secoundly with regards to this shopping cart, if im using access to save my product info and i want to display and sound file or image from an ole object in access how would i do this on the asp page cause have tried standaerd results field and come up with a load of **** like ---< %$09% >--- which means sod all to me. I just to make some money quick befoe i go bank rupt as there is no web design work any more and im quilifed sql dba and can't find any work there.

  #2 (permalink)  
Old Sep 2nd, 2003, 15:38
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
you got a BLOB in your database then... are they all sound files or all images? You need to know what type of file you are outputting before you output it... for an image...

Response.ContentType = "image/gif"

Set cn = Server.CreateObject("ADODB.Connection")
cn.Open "DSN=myDSN;UID=sa;PWD=;DATABASE=pubs"
Set rs = cn.Execute("SELECT pic_object FROM picture_tbl WHERE pic_id='" & pic_id & "'")

Response.BinaryWrite rs("pic_object")
Response.End

Hope that helps
Closed Thread

Tags
show, pictures, mp3, files, ole, object

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Issues with getting pictures to show on site supertr1 Starting Out 4 Nov 6th, 2007 18:08
Pictures VanessaJW Webforumz Cafe 36 May 22nd, 2007 16:15
Pictures in slide show on a web page Anne Introduce Yourself 5 Feb 14th, 2007 18:48
php uploading pictures Accurax PHP Forum 16 Dec 18th, 2006 11:20
gap between pictures maksinx Graphics and 3D 9 Aug 15th, 2006 17:19


All times are GMT. The time now is 15:43.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43