that works too cos i used a placeholder insted
thanks
can i ask you about databases in here? if i can i would like to know how to delete a user in aspnet db so far i have this code
Code:
USE ASPNet
GO
DECLARE @UserId uniqueidentifier
SET @UserId = 'THE GUID OF THE USER HERE'
DELETE FROM aspnet_Profile WHERE UserID = @UserId
DELETE FROM aspnet_UsersInRoles WHERE UserID = @UserId
DELETE FROM aspnet_PersonalizationPerUser WHERE UserID = @UserId
DELETE FROM dbo.aspnet_Membership WHERE UserID = @UserId
DELETE FROM aspnet_users WHERE UserID = @UserId
but i dont know what is
the guide of the user, how do you finde that?
when i use sqldatabase that i create my self i use configure data source wisard and then generate the update ,insert,deleate statements but with the aspnet db does not gave me that option.