Injection Attacks

Understanding Script Injection Attacks MSDN – How To: Protect From Injection Attacks in ASP.NET ASP.NET includes a feature designed to automatically combat script injection attacks, known as request validation. Two ways to disable request validation: Disable for individual page <%@ Page ValidateRequest=”false” Language=”C#” AutoEventWireup=”true” CodeFile=”Default.aspx.cs” Inherits=”_Default” %> Disable the entire web application by modifying the … Continued

CSS Keyword “inherit”

“inherit” makes the value of a property the same as the value of its parent element. In most cases, you don’t need to specify inheritance, since most properties inherit naturally.

CSS url

There are absolute url and relative url. In CSS, relative URLs are relative to the style sheet itself, not to the HTML document that uses the style sheet. Example: @import url(special/toppings.css); Note that there cannot be a space between the url and the opening parenthesis: body {background: url(https://www.pix.web/picture1.jpg);} /* correct */ body {background: url (images/picture2.jpg);} … Continued

Web-Safe Color Def’n

With hexadecimal notation, any triplet that uses the values 00, 33, 66, 99, CC, and FF is considered to be web-safe. Example: #00CC66, #FF00FF, etc… By Bryan Xu

MSDN – Providers General Overview

A series of MSDN articles on ASP.NET Providers: Microsoft ASP.NET 2.0 Providers: Introduction Membership Providers Role Providers Site Map Providers Session State Providers Profile Providers Web Event Providers Web Parts Personalization Providers Couple additional resources: MSDN – Provider Toolkit 4GuysFromRolla – A Look at ASP.NET 2.0