我有以下HtmlHelper方法,我想创建一个使用JavaScript重定向的按钮:
public static string JavaScriptButton(this HtmlHelper helper,string value,string action,string controller,object routeValues = null,object htmlAttributes = null) { var a = (new UrlHelper(helper.ViewContext.RequestContext)) .Action(action,controller,routeValues); var builder = new TagBuilder("input"); builder.Attributes.Add("type","submit"); builder.Attributes.Add("value",value); builder.Attributes.Add("class","button"); builder.Attributes.Add("onclick",string.Format("javascript:location.href='{0}'",a)); builder.MergeAttributes(new RouteValueDictionary(htmlAttributes)); return MvcHtmlString.Create(builder.ToString(TagRenderMode.SelfClosing)).ToString(); }
问题是创建onclick处理程序的行正在被tagbuilder转义,结果是html是:
<input class="button" onclick="javascript:location.href=''" type="submit" value="Return to All Audits" />
有没有办法停止这种行为?
解决方法
这实际上是.NET 4.0的一个问题。要修复它,您需要覆盖属性编码过程。
public class HtmlAttributeNoEncoding : System.Web.Util.HttpEncoder { protected override void HtmlAttributeEncode(string value,System.IO.TextWriter output) { output.Write(value); } }
然后将其放在您的web.config文件的< system.web>元件:
<httpRuntime encoderType="HtmlAttributeNoEncoding"/>
我发现这个here。