在html文件中使用Javascript重定向页面我像这样使用
window.location.href = "http://www.google.com/";
它工作正常。但是当我在 .aspx 中尝试时,它不起作用下面是我的代码。提前致谢
<head runat="server">
<script type="text/javascript">
function PageRedirect() {
window.location.href = "http://www.google.com/";
}
</script>
</head>
<body>
<form runat="server">
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="PageRedirect()"/>
</form>