所有,至于 asp.net 中的内联表达式,我对它们有一些疑问。
- 它们之间有什么区别?
- 在什么情况下,哪个更好?
顺便说一句,我发现下面的代码第一个不起作用,但第二个起作用。为什么?
<head runat="server">
<title></title>
<script src="<%#FullyQualifiedApplicationPath%>Scripts/jquery.js" type="text/javascript"></script>
</head><!--Not OK-->
<head runat="server">
<title></title>
<script src="<%=FullyQualifiedApplicationPath%>Scripts/jquery.js" type="text/javascript"></script>
</head><!--OK-->
FullyQualifiedApplicationPath
是在后面的代码中定义的变量。谢谢你的点评。