input-validation

ASP.NET MVC 2 and CKEditor input validation

I need to configure both mvc and ckeditor to work properly with validation. At first, I got an error about the Form.Request is dangerous because it contained html elements. I changed that, now my output in mvc is not correct. Here is my code: CKeditor config: config.htmlEncodeOutput = true; ASP.NET Textarea: <%: Html.TextAreaFor(mo...

Struts 2 s:action tag doesn't render action errors if any are present

For example I have the following: struts.xml: <action name="personForm"> <result>/jsp/personForm.jsp</result> </action> <action name="savePerson"> <result>/jsp/successSave.jsp</result> <result name="input">/jsp/personForm.jsp</result> </action> <action name="countries"> <result>/jsp/countries.jsp</result> </action> pe...