从菜单连接不起作用

本文关键字:不起作用 连接 菜单 | 更新日期: 2023-09-27 18:18:31

我有一个包含项目中所有类的菜单类,当我点击到其他类的链接时,我在opera浏览器中得到错误。"此网页不可用

Opera连接本地主机的尝试被拒绝。网站可能已经关闭,或者您的网络可能没有正确配置。"我在代码中找不到问题。非常感谢!

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using MySql.Data.MySqlClient;
namespace WebApplication1
{
    public partial class meni : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }

    }
}
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="meni.aspx.cs" Inherits="WebApplication1.meni" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    </div>
  <asp:Menu ID="Menu1" runat="server" Orientation="Horizontal" BackColor="#B5C7DE" 
        DynamicHorizontalOffset="2" Font-Names="Verdana" Font-Size="Larger" 
        ForeColor="#284E98" StaticSubMenuIndent="12px">
      <DynamicHoverStyle BackColor="#284E98" ForeColor="White" />
      <DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
      <DynamicMenuStyle BackColor="#B5C7DE" />
      <DynamicSelectedStyle BackColor="#507CD1" />
      <Items>
          <asp:MenuItem NavigateUrl="http://localhost:56717/Customer.aspx" 
              Text="costumers" Value="costumers"></asp:MenuItem>
          <asp:MenuItem NavigateUrl="http://localhost:56717/Vendor.aspx" Text="Vendors" 
              Value="Vendors"></asp:MenuItem>
          <asp:MenuItem NavigateUrl="http://localhost:56717/region.aspx" Text="Regions" 
              Value="Regions"></asp:MenuItem>
          <asp:MenuItem NavigateUrl="http://localhost:56717/Service.aspx" Text="Service" 
              Value="Service"></asp:MenuItem>
          <asp:MenuItem NavigateUrl="http://localhost:56717/usage.aspx" Text="Usages" 
              Value="Usages"></asp:MenuItem>
          <asp:MenuItem NavigateUrl="http://localhost:56717/comDisp.aspx" 
              Text="Commitments" Value="Commitments"></asp:MenuItem>
      </Items>
      <StaticHoverStyle BackColor="#284E98" ForeColor="White" />
      <StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
      <StaticSelectedStyle BackColor="#507CD1" />
    </asp:Menu>
    </form>
</body>
</html>

从菜单连接不起作用

看起来像是菜单项上的hrefs的问题-而不是NavigateURL="http://localhost:56717/Vendor。尝试使用相对url,如:

NavigateURL="~/Vendor.aspx"