我有一个包含项目中所有类的菜单类,当我点击指向另一个类的链接时,我在Opera浏览器中收到错误。 "此网页不可用
Opera对localhost的连接尝试被拒绝。网站可能已关闭,或者您的网络可能未正确配置。" 我无法在代码中找到问题。 非常感谢你!
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>
答案 0 :(得分:0)
看起来你的hrefs在菜单项上存在问题 - 而不是NavigateURL =&#34; http:// localhost:56717 / Vendor.aspx&#34;尝试使用相对URL,例如:
NavigateURL="~/Vendor.aspx"