Hi all,
Im a newbi at ASP.NET -just getting my dirty at it

.
ProbBackground: :D
Im trying to connect to the MSDE database that I have created a database called WroxJokeShop, using Windows NT integrated Security coz it wouldn't allow sa or any name for that matter as login :error is "user sa is not associated with trusted SQL server connection" as a result i ended up with using Windows NT integrated Security .
Prob:

I am using a ConnectionSting in Web.config . But im unsure of how to go on doing it for NT integrated security.
I have following at the moment and it doesnt work.
<add key="ConnectionString" value="Server=(local)\NetSDK;Integrated Security=SSPI;Initial Catalog=WroxJokeShop" />
I am calling this from another method GetDepartments() which is a stored procedure.
Dim command As New SqlCommand("GetDepartments", connection)
command.CommandType = CommandType.StoredProcedure
connection.Open()
An error always occurs at connection.Open()
Which states that the User is not part of Authoriszed members-- some thing like that. I believe its the way I have set up the server thats causing the prob. I can run the stored procedure directly.
Hers is how I installed MSDE.
Setup.exe /qb+ INSTANCENAME=NetSDK DISABLENETWORKPROTOCOLS=1 SAPWD=admin
And when I create the dbShop using VS.NET I am using the NT Secure Authentication.
Can you cc anything Im doing wrong.. this is soo frustating.

Any help is appreciated.
Cheers.
Imran.
-=there are 10 type of people in this world=-
-those who understand binary and the rest-