SQL Access/ASP.NET data access issue
HI,
I need to connect a SQL Server db with system DSN. This works fine in ASP. However using ASP.NET I get a runtime error "DSN key work not accepted". The code used in webconfig is:
<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="DSN=realmadrid;"
cookieless="false"
timeout="20"
/>
and setting up a system DSN called 'realmadrid'
Any clue?
|