Visual Studio 2010中的.net发布错误

时间:2012-03-13 19:27:42

标签: .net visual-studio-2010 publish

我正在使用Visual Studio 2010开发.net Web项目。我正在尝试使用文件系统方法在本地发布项目。但是当从我的Web浏览器访问default.aspx页面时,会输出以下错误:

  第2行第1行的

错误:StartTag:无效的元素名称

本网站的相关帖子没有给我一个有效的解决方案。

我该如何解决这个问题?

这是我的代码:

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="PresentationLayer._Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    <h2>
        Main Page
    </h2>

       <table>
            <tr>
                <td>
                    <asp:TextBox ID="txtSpeech" runat="server"></asp:TextBox></td>
                <td>                 
                    <asp:Button ID="btnValidate" runat="server" Text="Validate" 
                        onclick="btnValidate_Click" ValidationGroup="Validations" />
                </td>
                <td>
                    <asp:Button ID="btnSpeach" runat="server" Text="Play" 
                        onclick="btnSpeach_Click" /></td>
                        <td>
                <asp:Button ID="btnNewText" runat="server" Text="New" onclick="btnNewText_Click" /></td>
            </tr>
            <tr>
            <td>
                <asp:Label ID="lblText" runat="server" Text=""></asp:Label></td>
            </tr>
            <tr>
                <td>
                    <asp:Label ID="lblValidation" runat="server" Text=""></asp:Label>
                    </td> </tr>
                    <tr>


                    <td>

                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" 
                        ControlToValidate="txtSpeech" ErrorMessage="Required Field" 
                        ValidationGroup="Validations" ForeColor="Red"></asp:RequiredFieldValidator>
                </td>
            </tr>
             <tr>                

                    <td>

                        <asp:RangeValidator ID="RangeValidator1" runat="server" 
                            ControlToValidate="txtSpeech" ErrorMessage="Incorrect Input" ForeColor="Red" 
                            MaximumValue="15" MinimumValue="0" Type="Integer" ValidationGroup="Validations"></asp:RangeValidator>

                    </td>
                    </tr>


        </table>

    </asp:Content>

1 个答案:

答案 0 :(得分:0)

如果我尝试从Google Chrome中的文件系统直接打开文件,则会出现此错误。实际上,您需要在IIS中托管您的站点才能使其正常工作。然后浏览到IIS中的URL设置。