这个javascript行给了我A potentially dangerous Request.QueryString value was detected from the client
$('a[href=#tabs1-pane' + @Request.Params["index"] + ']').tab('show');
通常我会通过在控制器上设置[ValidateInput(false)]来解决这些问题,但我如何在view / javascript中解决这个问题?
答案 0 :(得分:0)
检查这是否有助于你
var tempdate=@Request.Params["index"];
$('a[href=#tabs1-pane' + tempdate.tostring() + ']').tab('show');