Hi,
using DSN connection to access sql database with the DSN setup to use the sql server authentication username and password. However once I run the asp its defaulting back to my NT login name.
How do I add the username sa to the following script
<%@ Language=JavaScript %>
<%
DSN = "DSN=EMRDATA1";
Conn = Server.CreateObject("ADODB.Connection"
;
Conn.Open(DSN);
using DSN connection to access sql database with the DSN setup to use the sql server authentication username and password. However once I run the asp its defaulting back to my NT login name.
How do I add the username sa to the following script
<%@ Language=JavaScript %>
<%
DSN = "DSN=EMRDATA1";
Conn = Server.CreateObject("ADODB.Connection"
Conn.Open(DSN);