简体   繁体   中英

Specificying a Page directive attribute on an NHaml page

I am working on an MVC site using NHaml for the view engine.

I have a page that needs to submit HTML code as a form value and am getting the System.Web.HttpRequestValidationException thrown at me.

I want to specify the <%@ Page validateRequest="false" %> so that this page will allow this data to be submitted but am unsure on how to do this with NHaml generating the pages.

Side note on this:
The editor I was using was TinyMCE and I found that it has an option for encoding the output, that way it doesn't trigger the anti-html validation.

Of course, then your value is encoded so you have to make sure to decode it at the proper time.

See http://wiki.moxiecode.com/index.php/TinyMCE:Configuration/encoding

You may try annotating your controller action with the ValidateInputAttribute :

[ValidateInput(false)]
public ActionResult Index()
{
    // ...method body
}

This could also be done in the config file for the whole application:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM