Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用这个时,我的 json 方法工作正常:
Response.Redirect("~/Default.aspx");
但是当我使用
Server.Transfer(string.Format("~/Default.aspx");
它给了我错误'$未定义'
假设目前我在 routing.aspx 页面中。
我在页面的 head 标记中给出了 jquery 的完整路径。
改变:
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
到
<script src="http://localhost:50847/Scripts/jquery-1.4.1.js" type="text/javascript"></script>
我知道硬编码不是好的做法,但我会优化它,现在可能这可以帮助像我这样的人。