Re:no default driver

May 26, 2005 by Kim Greve

Conn.Open Application("ConnectionString")

Remove the "" chars

Like this: Conn.Open Application(ConnectionString)

RE: Re:no default driver

May 26, 2005 by wargk khoo

still cannot....

:(

no default driver

May 26, 2005 by Kim Greve
Show us your connectionstring and global.asa file.

some problem with connectionstring

May 31, 2005 by Yamini Arora

rather than directly picking the value as

cnn.open application("connectionstring")

try using this:

s=application("connectionstring")

cnn.open s

 

if this still doesn't work, print the variable value and see if it actually contains a valid connection string!