2016-04-22 62 views
0

我只是想讓我的gridview可編輯,它將充滿數據庫中的數據。當我的程序啓動時,它將連接到數據庫並用數據填充gridview。現在我想編輯它中的數據。 我不知道我是由於其在做什麼錯誤,我得到在Visual Studio的設計視圖這個錯誤ERROR:- Error creating control - GridView1. The server tag is not well formed.創建控件時出錯 - GridView1。服務器標籤格式不正確

看一看標籤和告訴我在哪裏,我會犯錯。

的.aspx: -

<%@ Page Title="" Language="C#" MasterPageFile="~/AdminHome/AdminMainPage.master" AutoEventWireup="true" CodeFile="questions.aspx.cs" Inherits="AdminHome_questions" %> 
 

 
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> 
 
</asp:Content> 
 
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 
 

 
    <asp:GridView ID="GridView1" Width="100%" runat="server" AutoGenerateColumns = "false" 
 
AllowPaging = "true" PageSize = "10" Font-Names = "Arial" 
 
Font-Size = "11pt" AlternatingRowStyle-BackColor = "#C2D69B" 
 
HeaderStyle-BackColor = "green" OnPageIndexChanging = "OnPaging"> 
 
<Columns> 
 
    <asp:TemplateField ControlStyle-Width="100%" HeaderText="Questions"> 
 
     
 

 
     <ItemTemplate> 
 
      
 

 
      <asp:Table runat="server" Width="100%"> 
 
       
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Description") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Question") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow > 
 
        <asp:TableCell> 
 
         <%# Eval("Option1") %></asp:TableCell> 
 
        <asp:TableCell> 
 
         <%# Eval("Option2") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Option3") %></asp:TableCell> 
 
        <asp:TableCell> 
 
         <%# Eval("Option4") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("CorrectAns") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Explanation") %></asp:TableCell> 
 
       </asp:TableRow> 
 
      </asp:Table> 
 
        
 

 
     </ItemTemplate> 
 
     <EditItemTemplate> 
 
      <asp:Table runat="server" Width="100%"> 
 
       
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Description")%>"></asp:TextBox> </asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Question") %>"></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow > 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Question") %>"></asp:TextBox></asp:TableCell> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Option2") %>"></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Option3") %>"></asp:TextBox></asp:TableCell> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Option4") %>"></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("CorrectAns") %>"></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text="<%# Eval("Explanation") %>"></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
      </asp:Table> 
 
     </EditItemTemplate> 
 
    </asp:TemplateField> 
 

 

 
<asp:TemplateField ControlStyle-Width="100%"> 
 
     
 

 
     <HeaderTemplate> 
 
Sections 
 
<asp:DropDownList runat="server" OnSelectedIndexChanged = "SectionChanged" AutoPostBack = "true" 
 
      AppendDataBoundItems = "true"> 
 
       <asp:ListItem Text = "ALL" Value = "ALL"></asp:ListItem> 
 
      <asp:ListItem Text = "Top 10" Value = "10"></asp:ListItem> 
 

 
      </asp:DropDownList> 
 
</HeaderTemplate> 
 
<ItemTemplate> 
 
<%# Eval("SectionName") %> 
 
</ItemTemplate> 
 
<EditItemTemplate> 
 
<asp:TextBox ID="txtPageDesc" runat="Server" TextMode="MultiLine" Rows="10" Columns="50" 
 

 
           Text='<%# Eval("SectionName") %>'></asp:TextBox> 
 
</EditItemTemplate> 
 
</asp:TemplateField> 
 

 
    </Columns> 
 
     </asp:GridView> 
 

 
</asp:Content>

回答

1

雖然將數據綁定到文本框你寫文本= 「<%#的eval( 」描述「)%>」代替寫文本= '<%#Eval(「Description」)%>'

而不是「」''

相同的所有文本框。

<%@ Page Title="" Language="C#" MasterPageFile="~/AdminHome/AdminMainPage.master" AutoEventWireup="true" CodeFile="questions.aspx.cs" Inherits="AdminHome_questions" %> 
 

 
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> 
 
</asp:Content> 
 
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> 
 

 
    <asp:GridView ID="GridView1" Width="100%" runat="server" AutoGenerateColumns = "false" 
 
AllowPaging = "true" PageSize = "10" Font-Names = "Arial" 
 
Font-Size = "11pt" AlternatingRowStyle-BackColor = "#C2D69B" 
 
HeaderStyle-BackColor = "green" OnPageIndexChanging = "OnPaging"> 
 
<Columns> 
 
    <asp:TemplateField ControlStyle-Width="100%" HeaderText="Questions"> 
 
     
 

 
     <ItemTemplate> 
 
      
 

 
      <asp:Table runat="server" Width="100%"> 
 
       
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Description") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Question") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow > 
 
        <asp:TableCell> 
 
         <%# Eval("Option1") %></asp:TableCell> 
 
        <asp:TableCell> 
 
         <%# Eval("Option2") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Option3") %></asp:TableCell> 
 
        <asp:TableCell> 
 
         <%# Eval("Option4") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("CorrectAns") %></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <%# Eval("Explanation") %></asp:TableCell> 
 
       </asp:TableRow> 
 
      </asp:Table> 
 
        
 

 
     </ItemTemplate> 
 
     <EditItemTemplate> 
 
      <asp:Table runat="server" Width="100%"> 
 
       
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Description")%>'></asp:TextBox> </asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Question") %>'></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow > 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Question") %>'></asp:TextBox></asp:TableCell> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Option2") %>'></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Option3") %>'></asp:TextBox></asp:TableCell> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Option4") %>"></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("CorrectAns") %>'></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
       <asp:TableRow width="100%"> 
 
        <asp:TableCell> 
 
         <asp:TextBox runat="server" text='<%# Eval("Explanation") %>'></asp:TextBox></asp:TableCell> 
 
       </asp:TableRow> 
 
      </asp:Table> 
 
     </EditItemTemplate> 
 
    </asp:TemplateField> 
 

 

 
<asp:TemplateField ControlStyle-Width="100%"> 
 
     
 

 
     <HeaderTemplate> 
 
Sections 
 
<asp:DropDownList runat="server" OnSelectedIndexChanged = "SectionChanged" AutoPostBack = "true" 
 
      AppendDataBoundItems = "true"> 
 
       <asp:ListItem Text = "ALL" Value = "ALL"></asp:ListItem> 
 
      <asp:ListItem Text = "Top 10" Value = "10"></asp:ListItem> 
 

 
      </asp:DropDownList> 
 
</HeaderTemplate> 
 
<ItemTemplate> 
 
<%# Eval("SectionName") %> 
 
</ItemTemplate> 
 
<EditItemTemplate> 
 
<asp:TextBox ID="txtPageDesc" runat="Server" TextMode="MultiLine" Rows="10" Columns="50" 
 

 
           Text='<%# Eval("SectionName") %>'></asp:TextBox> 
 
</EditItemTemplate> 
 
</asp:TemplateField> 
 

 
    </Columns> 
 
     </asp:GridView> 
 

 
</asp:Content>

+0

如何愚蠢的我!我做了這樣一個愚蠢的錯誤。非常感謝你 –

相關問題