2017-01-05 79 views
0

工作,我已經發表了我的myasp.net服務器上的網站,除了文件夾內的任意內容網頁一切正常,當我瀏覽到任何頁面文件夾中我得到的空白頁面,但在根目錄下頁工作正常,當我複製任何網頁的形式,它的文件夾的根目錄下,它工作正常 例如 登錄頁面鏈接(根目錄頁)正在 http://ammm199462-001-site1.gtempurl.com/About.aspx 用戶名:艾哈邁德 密碼: 123 當您通過以下鏈接登錄,你應該去約頁,並且還這個頁面的工作,因爲它是在根目錄導航到內容頁面不上myasp.net託管網站

的任何頁面除了這兩個頁面的文件夾,以便他們不工作 例如 產品頁面鏈接(在文件夾頁)不工作 http://ammm199462-001-site1.gtempurl.com/Products/Products.aspx

但是當我最後一頁(產品頁)複製到根目錄它工作 罰款,我有用戶重定向到它,如果異常發生頁面,它工作正常,在根目錄 例如頁面:錯誤有關網頁鏈接 http://ammm199462-001-site1.gtempurl.com/Abo2ut.aspx

,當我複製默認.asp的(第一個也是唯一頁面是在服務器中,當我跑它第一次)的文件夾中正常工作

可能有些環節不跟你工作,因爲我已經做了很多的託管文件的更改和文件夾

清楚的問題,是內部文件夾的內容頁面無法正常工作

母版頁

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="ShopSystem.MasterPage" %> 

<!DOCTYPE html> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server"> 
    <meta charset="utf-8"/> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/> 

    <meta name="viewport" content="width=device-width, initial-scale=1"/> 
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> 
    <title>System Name</title> 


    <asp:ContentPlaceHolder ID="head" runat="server"> 
    </asp:ContentPlaceHolder> 
    <link rel="shortcut icon" type="image/x-icon" href="~/Images/PenguinWebSiteIcone.png" /> 
     <link rel="shortcut icon" type="image/x-icon" href="../Images/PenguinWebSiteIcone.png" /> 

    <!-- Bootstrap --> 
<%-- <link href="~/css/main.css" rel="stylesheet" type="text/css" runat="server"/>--%> 

     <link href="~/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" runat="server"/> 
     <link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" runat="server"/> 
     <link rel="stylesheet" href="<%= Page.ResolveUrl("~/bootstrap/css/bootstrap.min.css")%>" /> 



    <link href="~/Content/MasterStyle.css" rel="stylesheet" type="text/css" runat="server" /> 



    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> 
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> 
    <%-- [if lt IE 9]> 
     <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> 
     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> 
    <![endif]--%> 
</head> 
<body> 

Products.aspx

<%@ Page Title="Products" Language="C#" MasterPageFile="~/MasterPage.Master" AutoEventWireup="true" CodeBehind="Products.aspx.cs" Inherits="ShopSystem.Products.Products" %> 

    <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> 
    <style type="text/css"> 
    .ZeroQuantity { 
     background-color :rgba(255, 87, 34, 0.41); 
    }  

    .LowQuantity { 
     background-color : rgba(255, 152, 0, 0.41); 
    } 
</style> 
</asp:Content> 
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> 
    <div class="ProductPage"> 
     <h1 class="Pagetitle">Products Table</h1> 
     <div class="row"> 
      <div class="col-md-8 navbar-right"> 
+0

請張貼Products.aspx,和母版頁,如果你有一個。 – Win

+0

你的意思是後期products.aspx? –

+0

請顯示您的代碼。 – Win

回答