我的内部网有问题,我试图通过更改小东西来查看每个文件,看看它在页面上的反映方式(更改颜色,字体大小等)但我认为我认为我去了很远或者我错误地在错误的地方输入了一些东西。
这是我遇到问题的部分。
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
Width: 651px">
我尝试在网站上更改WIDTH几次,但没有任何改变,所以我把它恢复到651px,但现在我在网站上收到此错误。
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: The server tag is not well formed.
Source Error:
Line 3: </asp:Content>
Line 4: <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
Line 5: <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
Line 6: Width: 651px">
Line 7: <Columns>
第5行是红色的。
答案 0 :(得分:0)
如错误所述,您的服务器标签格式不正确。它基本上是语法错误,因为您错过了引号并使用冒号而不是等号。看看标签上的其他属性,然后看看你的。请注意区别:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
Width: 651px">
应该是:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
Width="651px">
想一想,不应该Width
是一个整数吗?可能需要:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
Width="651">