Skip to: Site menu | Main content
In web development and programming, I often come across useful tidbits that solve a problem for me. I often have those problems again and can't remember that tidbit. Now I will. Maybe you can benefit too.
The Problem Being the security experts that they are, Microsoft is attempting to save you from yourself by providing some built in request validation in .NET. What this means is that if you have a form that has user input fields and someone types in something evil like HTML 3.0 code into it, you'll get an exciting error message telling you this isn't allowed. The idea here is of course to try and keep people from doing things like cross site scripting (XSS) on your poorly designed web site.
Error: The DELETE statement conflicted with the REFERENCE constraint "FK__aspnet_Me__UserI__15502E78". The conflict occurred in database "YourDBName", table "dbo.aspnet_Membership", column 'UserId'.
- DevGuru - Transact-SQL Reference - Google - More Helpful Links
.NET | AJAX | Apache | ASP.NET | Browsers | C# | CSS | IIS | InfoPath | JavaScript | MS SQL | MySQL | PHP | Search | Security | SharePoint | VB.NET
User: Pass: