Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi
I have tried working with windows authentication for my application and it works fine, but my requirement is to add the credentials(username and password) only in the application settings in the IIS7 and I don't want to add the access roles in the database(sql server 2008) is it possible to do it that way? please provide suggestive link if there any
Posted
Comments
Bernhard Hiller 26-Apr-13 2:57am    
Where is your problem? Connecting to the SQL Server with SQL Server authentication instead of Windows Authentication? Access rights to your web application?
Shashwath7 26-Apr-13 3:43am    
Hi

I want to create a SQL Server login that uses Windows Authentication without adding the Login name.Is it possible if not whats the ideology behind it

1 solution

HTML
<system.web>
   
        <compilation debug="true" targetframework="4.0"></compilation>

        <identity impersonate="true" username="yourSystemUserName" password="YourSystemPassword" />
 </system.web>

 <appsettings>
        <add key="ConnString" value="server=YourServer;database=YourDatabase;Integrated Security=true;"></add>
    </appsettings>



try these settings.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900