It looks like the webpages_Roles table has a link to a user, you must exclude the user from the role, and after that you can delete the user, try the following:
Roles.RemoveUserFromRole("UserName","RoleName"); Membership.DeleteUser("UserName");
Or you can try a different approach: explicitly specify cascading deletion in your db as follows:

source share