重定向时解析器错误

本文关键字:错误 重定向 | 更新日期: 2023-09-27 18:31:17

我在运行代码时遇到解析器错误并检查了引用,但一切似乎都到位。从页面重定向时发生错误 错误发生在第 1 行。

<%@ Page Title="CreateUser" Language="C#" MasterPageFile="~/Main.Master" AutoEventWireup="true" CodeBehind="CreateUser.aspx.cs" 
    Inherits="ICSWebPortal.Portal.Pages.User.CreateUser" PageName="Create User" PageDescription="Details of user" %>
<%@ MasterType VirtualPath="~/Main.Master" %>

这是我在另一个页面上的重定向功能

function CreateNewUser()
{
    window.location = "<% = GetHost() %>/User/Create/"
}

重定向时解析器错误

window.location = "<%= GetHost() %>/User/Create/";

window.location = "<%# GetHost() %>/User/Create/";

window.location = "<%: GetHost() %>/User/Create/";

他们中的任何一个都应该工作。