moving into v1.1 - asp.net

we've moved our code into vs.net 2003

we noticed a problem when passing parameters to the server that contained xml
code

we got "A potentially dangerous request......"

searching thru google came up with this:

https://www.asp.net/faq/RequestValidation.aspx

a neat explenataion to a new feature in 1.1..

u can disable it with :

<configuration>

<system.web>
<pages validateRequest="false"
/>
</system.web>
</configuration>

in your web.config / machine.config