簡體   English   中英

Visual Studio“4個錯誤中的0個”

[英]Visual Studio “0 of 4 errors”

我正在嘗試構建我的項目,Visual Studio告訴我我的項目中有錯誤。 錯誤窗口顯示它列出“4個錯誤中的0個”。 我在哪里可以找到這些錯誤?

這是我剛創建的一個項目,所以我唯一的C#代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class StationCreate : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
}

這基本上沒什么。 然后我有這個文件,我從另一個我復制的內容:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="StationCreate.aspx.cs" Inherits="StationCreate" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
        .auto-style1 {
            width: 100%;
        }
        .auto-style2 {
            width: 761px;
        }
        .auto-style3 {
            font-size: large;
        }
        .auto-style7 {
            width: 950px;
        }
    </style>
</head>
<body style="text-align: center">
    <form id="form1" runat="server">
    <div draggable="false" class="container">
    <table class="auto-style1">
            <tr>
                <td style="text-align: left" class="header">

                    <table class="auto-style1">
                        <tr>
                            <td class="auto-style7">

        <asp:Label ID="TitleLabel" runat="server" Text="Station Creator" style="font-weight: 700; font-size:48pt; font-family:'Segoe UI'; text-transform:uppercase;"></asp:Label>
                                <br />
                    <asp:Label ID="StationIDLabel" runat="server" style="text-transform:uppercase;"></asp:Label>
                            </td>
                            <td style="text-align: left">
    </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>
        <br />

        <br />
        <br />
        <br />
        <br />
        <table class="auto-style1">
            <tr>
                <td class="auto-style2">
                    &nbsp;</td>
                <td>
                    &nbsp;</td>
            </tr>
            <tr>
                <td class="topTableCell">
        <asp:Label ID="StatusLabel" runat="server" style="font-weight: 700" Font-Size="Large" ForeColor="Black">Select a JOB</asp:Label>
                    <br />
                    <br />
                    <asp:TextBox ID="TextBox1" runat="server" CssClass="textbox"></asp:TextBox>
                </td>
                <td class="topTableCell">
                    <span class="auto-style3">&nbsp;<br />
                    </span>
                    <asp:Button ID="GenerateButton" runat="server" Text="Generate" OnClick="GenerateButton_Click" Enabled="False" CssClass="button" Font-Size="XX-Large" ForeColor="Gray" />
                    <br />
                    <br />
                    <br />
                    <asp:Button ID="DashboardButton" runat="server" CssClass="button" Font-Size="XX-Large" ForeColor="White" OnClick="DashboardButton_Click" Text="Dashboard" />
                </td>
            </tr>
        </table>
        <br />

        <div class="gridViewContainer">
            </div>
        <asp:Label ID="TestLabel" runat="server" Visible="False"></asp:Label>


    </div>
    </form>
</body>
</html>

事實證明我只是在錯誤列表上設置了一個過濾器。 一個愚蠢的錯誤,但吸取了教訓!

編輯:

單擊此按鈕可以找到錯誤列表中的過濾器選項:

fiter

在這里,它沒有被選中。 如果選中它,您可以選擇根據錯誤所在的項目過濾錯誤消息/警告。 通過取消選擇它(如上圖所示),您將沒有過濾器,您應該看到所有錯誤。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM