Posted by M K on 05/09/07 12:21
Ok a newbie here...
i have a sql server db I got from a book to learn. I am having problems
with the 'Authentication' mode.
I need a valid id to be authenticated with...
i have a web config file but I am not sure what goes where?
name of server
MKLAPTOP\VAIO_VEDB
connection
MKLAPTOP\Mark
i have both sql and windows authentication selected
heres the web.config
<configuration>
<appSettings>
<add key="constring"
value="Server=MKLAPTOP\VAIO_VEDB;UID=MKLAPTOP\Mark;PWD=IPutWindowsPWHere;Database=AspNetJobs"
/>
</appSettings>
<system.web>
<compilation debug="true"/>
<authentication mode="Forms" >
<forms name=".ASPNETJOBS"
loginUrl="~/site/password/login.aspx" />
</authentication>
</system.web>
</configuration>
Is there anything else i need to check/change etc.. please keep in mind I am
in learning mode so a good explination would be very helpful...
Thanks in advance,
Mark
[Back to original message]
|