3

I know in mvc the site master page shares resource(html elements) with aspx file.Like this it is possible to refer the script file in site master that will share with aspx?If so how to do that?

In other word am using script file in all my aspx. <script src="../../../Src/Scripts/jquery.ui.widget.js" type="text/javascript"></script>

Whether it is possible to refer in my sitemaster page that will make that script reference in all my aspx?(Excluding my apsx page)

thanks in Advance

4

1 回答 1

0

对的,这是可能的。在站点管理员脚本块中写入

<script src="~/Scripts/jquery.ui.widget.js"></script>

并且您所有拥有此母版的 aspx 页面都将使用此参考。

于 2012-10-26T14:56:58.263 回答