在.net framework 4.0版本以下,
只需要在web.config中进行如下配置:
<configuration>
<system.web>
<pages validateRequest="false">
而在.net framework 4.0版本中,则需要再多添加一行配置,如下:
<httpRuntime requestValidationMode="2.0">
即:
<configuration>
<system.web>
<pages validateRequest="false">
<httpRuntime requestValidationMode="2.0">