或者将javascript代码放在函数中,让razor编译器可以识别,请看下面两个例子:
附例一:
<script type="text/javascript">
//now add markers
@foreach (var item in Model) {
<text>
var markerlatLng = new google.maps.LatLng(@(Model.Latitude), @(Model.Longitude))
var title = '@(Model.Title)'
var description = '@(Model.Description)'
var contentString = '<h3>' + title + '</h3>' + '<p>' + description + '</p>'
var infowindow = new google.maps.InfoWindow({
content: contentString
})
var marker = new google.maps.Marker({
position: latLng,
title: title,
map: map,
draggable: false
})
google.maps.event.addListener(marker, 'click', function () {
infowindow.open(map, marker)
})
</text>
}
</script>
附例二:
<script type="text/javascript">
//some javascript code here to display map etc
...
//declare addMarker function
function addMarker(latitude, longitude, title, description)
{
var markerlatLng = new google.maps.LatLng(@(Model.Latitude), @(Model.Longitude))
var title = '@(Model.Title)'
var description = '@(Model.Description)'
var contentString = '<h3>' + title + '</h3>' + '<p>' + description + '</p>'
var infowindow = new google.maps.InfoWindow({
content: contentString
})
var marker = new google.maps.Marker({
position: latLng,
title: title,
map: map,
draggable: false
})
google.maps.event.addListener(marker, 'click', function () {
infowindow.open(map, marker)
})
}
//now add markers
@foreach (var item in Model) {
@:addMarker(@item.Latitude, @item.Longitude, '@item.Title', '@item.Description')
}
不是很懂你想干啥 ,方法1 : 在action里面 return Content()//因为是html文件 , 所以不用经过view的渲染了 , 然后你再用 js /ajax 去获取数据 , 更新页面
方法2 : 把你的html 文件改成 cshtml 走view的渲染路线 . 就直接return view就好了 ,
是.net 4.0的拦截注入攻击的功能导致的,在input中传递内容之前做一下html的encode就好了。
要好不想改代码,可以设置web.config配置文件,关闭input的注入攻击的检查:
<system.web>
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false"></pages>
</system.web>
可以用来应急,不推荐这么做。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)