有个webfrom的 的例子 但是mvc不知道怎么改?
源: <script type="text/javascript" src="js/jquery-1.8.2.js"></script> <script type="text/javascript" src="js/global.js"></script> <script type="text/javascript" src="js/define.js"></script> <%if (map_type == "MAP_TYPE_GOOGLE") { %> <script type="text/javascript" src="js/gmap.js"></script> <%} else { %> <script type="text/javascript" src="js/bmap.js"></script> <%} %> <script type="text/javascript" src="js/wisemap.js"></script>
其中 gmap.js 和bmap是变化的 根据map_type 然后在js里面
<script type="text/javascript"> var wimap = new wiseMap(<% =map_type %>, xxxx, xx, xx); </script>
后台代码:
public string map_type = string.Empty; protected void Page_Load(object sender, EventArgs e) { map_type = Request.Params["map_type"]; if (map_type == null || map_type == "") { map_type = "MAP_TYPE_BAIDU"; } }
求大侠帮忙改成mvc的版本 谢谢!
map_type变成ViewBag咯...其他不变....
如果是MVC2那就是ViewData咯....楼主哪里还有问题呢?
一样的写法啊
用前端吧,