Thread
:
Connecting to SQL Server from ASP
View Single Post
#
3
(
permalink
)
02-29-2008, 06:32 AM
Serdar Yegulalp
Posts: n/a
Re: Connecting to SQL Server from ASP
> <%
>
> cncString = "DSN=X;" _
> + "Database=Y;" _
> + "UID=foo;" _
> + "PWD=bar"
Use & to concatenate strings in ASP, not +.
Serdar Yegulalp