View Single Post

   
  #3 (permalink)  
Old 02-29-2008, 06:32 AM
Serdar Yegulalp
 
Posts: n/a
Default Re: Connecting to SQL Server from ASP

> <%
>
> cncString = "DSN=X;" _
> + "Database=Y;" _
> + "UID=foo;" _
> + "PWD=bar"


Use & to concatenate strings in ASP, not +.

Reply With Quote