Click here to Skip to main content
15,913,722 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: UL text color and CSS problem. Pin
allia14-Nov-03 22:45
allia14-Nov-03 22:45 
GeneralRe: UL text color and CSS problem. Pin
Like2Byte15-Nov-03 1:05
Like2Byte15-Nov-03 1:05 
GeneralRe: UL text color and CSS problem. Pin
Sarvesvara (BVKS) Dasa14-Nov-03 22:46
Sarvesvara (BVKS) Dasa14-Nov-03 22:46 
GeneralRe: UL text color and CSS problem. Pin
allia14-Nov-03 23:14
allia14-Nov-03 23:14 
GeneralRe: UL text color and CSS problem. Pin
Like2Byte15-Nov-03 1:08
Like2Byte15-Nov-03 1:08 
GeneralRe: UL text color and CSS problem. Pin
Sarvesvara (BVKS) Dasa15-Nov-03 20:07
Sarvesvara (BVKS) Dasa15-Nov-03 20:07 
GeneralViewing Files From Access Database Pin
13-Nov-03 11:29
suss13-Nov-03 11:29 
GeneralRe: Viewing Files From Access Database Pin
allia14-Nov-03 22:56
allia14-Nov-03 22:56 
A simple SQL SELECT statement would do.
Dim sql
sql = "SELECT the_file_field FROM your_database WHERE some_condition"

' Create a RecordSet Object
Dim rs
set rs = Server.CreateObject("ADODB.RecordSet")

' Retrieve the records
rs.Open sql, Connection, adOpenForwardOnly, adLockOptimistic

'write it
Response.write rs("the_file_field")

Note:
you need to open connection, check EOF, close connection.
I reffer you to Chris Maunder's Article on Accessing Microsoft Access databases in ASP using ADO[^]

I live to code.
GeneralWeb service eating memory Pin
Anonymous13-Nov-03 9:14
Anonymous13-Nov-03 9:14 
GeneralRe: Web service eating memory Pin
Daniel Turini13-Nov-03 10:16
Daniel Turini13-Nov-03 10:16 
GeneralIE - Commerce Server Pin
Sarvesvara (BVKS) Dasa13-Nov-03 6:05
Sarvesvara (BVKS) Dasa13-Nov-03 6:05 
GeneralRegExp for Email Pin
Hesham Amin13-Nov-03 0:24
Hesham Amin13-Nov-03 0:24 
GeneralRe: RegExp for Email Pin
Paul Watson13-Nov-03 0:53
sitebuilderPaul Watson13-Nov-03 0:53 
GeneralRe: RegExp for Email Pin
ZoogieZork13-Nov-03 2:40
ZoogieZork13-Nov-03 2:40 
GeneralRe: RegExp for Email Pin
Hesham Amin13-Nov-03 3:45
Hesham Amin13-Nov-03 3:45 
GeneralRe: RegExp for Email Pin
Daniel Turini13-Nov-03 10:25
Daniel Turini13-Nov-03 10:25 
GeneralRe: RegExp for Email Pin
Hesham Amin13-Nov-03 21:15
Hesham Amin13-Nov-03 21:15 
GeneralWhile I'm At It, I Might As Well Ask Pin
Roger Wright12-Nov-03 18:21
professionalRoger Wright12-Nov-03 18:21 
GeneralRe: While I'm At It, I Might As Well Ask Pin
Daniel Turini13-Nov-03 10:22
Daniel Turini13-Nov-03 10:22 
GeneralRe: While I'm At It, I Might As Well Ask Pin
Roger Wright13-Nov-03 11:07
professionalRoger Wright13-Nov-03 11:07 
GeneralVisual InterDev Line Numbers Pin
Roger Wright12-Nov-03 17:58
professionalRoger Wright12-Nov-03 17:58 
GeneralRe: Visual InterDev Line Numbers Pin
Richard Lund12-Nov-03 21:31
Richard Lund12-Nov-03 21:31 
GeneralRe: Visual InterDev Line Numbers Pin
Roger Wright13-Nov-03 0:46
professionalRoger Wright13-Nov-03 0:46 
Generalstyle sheets and links... Pin
l a u r e n12-Nov-03 13:39
l a u r e n12-Nov-03 13:39 
GeneralRe: style sheets and links... Pin
E Slipchenko12-Nov-03 15:51
E Slipchenko12-Nov-03 15:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.