Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NT Authentication is script?

Status
Not open for further replies.

OnAFan

Technical User
Mar 13, 2002
120
US
Hello All,
I know when I create a conncection string to a db, there is a way to use the SQL Authentication...is there a way to do put NT Authentication in my script?? Thank you in advance.
Terry
 
This is the connection string I use to access my SQL Server...

Code:
<%
' FileName=&quot;Connection_odbc_conn_dsn.htm&quot;
' Type=&quot;ADO&quot;
' HTTP=&quot;false&quot;
' Catalog=&quot;&quot;
' Schema=&quot;&quot;
MM_connDUclassified_STRING = &quot;Provider=sqloledb;&quot; & _
           &quot;Network Library=DBMSSOCN;&quot; & _
           &quot;Data Source=205.206.XXX.XXX,1433;&quot; & _
           &quot;Initial Catalog=data_base;&quot; & _
           &quot;User ID=user_name;&quot; & _
           &quot;Password=password&quot;
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top