Advertisement

11.29.2006 at 05:38AM PST, ID: 22076197
[x]
Attachment Details

Edit GridView (ASP.NET 20 / C#)

[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.2
Tags:

gridview, edit

I have a gridview with one column called "Advertiser". When the "Edit" button is clicked, the litteral-control shall be replaced with an textbox control, and the "Edit button shall be replaced with "Save" and "Cancel" buttons.

The datagrid is filled correctly with data, but I dont know how to write the "Update" or "Cancel" command.
Here is my code so far:


--------------
ASPX
--------------

<asp:GridView runat="server" id="grdAdvertisers" AutoGenerateColumns="false" ShowHeader="false" OnRowEditing="grdAdvertisers_RowEditing">
    <EditRowStyle BackColor="yellow" />
    <Columns>
        <asp:TemplateField>
            <ItemTemplate>
                <asp:LinkButton CommandName="Edit" Text="Edit" Width="45px" runat="server" />
            </ItemTemplate>
            <EditItemTemplate>
                <asp:LinkButton CommandName="Update" Text="Update" Width="45px" runat="server" />
                <asp:LinkButton CommandName="Cancel" Text="Cancel" Width="45px" runat="server" />
            </EditItemTemplate>                  
        </asp:TemplateField>
        <asp:TemplateField>
             <ItemTemplate>
               <%# DataBinder.Eval(Container.DataItem,"AdvertiserName") %>
            </ItemTemplate>
            <EditItemTemplate>
                <asp:TextBox runat="server" ID="txtAdvertiser" Text='<%# DataBinder.Eval(Container.DataItem,"AdvertiserName") %>' />
            </EditItemTemplate>
        </asp:TemplateField>
    </Columns>
</asp:GridView>


------------------
ASPX.CS
------------------

    private void bindAdvertisers()
    {
        SqlConnection Conn = new SqlConnection(Variables.ConnString);
        SqlCommand cmd = new SqlCommand("usp_AdvertiserNames", Conn);
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Connection.Open();
        SqlDataReader dr = cmd.ExecuteReader();
        this.grdAdvertisers.DataSource = dr;
        this.grdAdvertisers.DataBind();
        cmd.Connection.Close();
        cmd.Dispose();
        Conn.Dispose();
    }


    protected void grdAdvertisers_RowEditing(object sender, GridViewEditEventArgs e)
    {
        //Response.Write(e.NewEditIndex);
    }
Answered By: TheLearnedOne
Expert Since: 08/23/1999
Accepted Solutions: 9519
Computer Expertise: Guru
TheLearnedOne has been an Expert for 9 years 4 months, during which he has posted 149271 comments and answered 9519 questions. TheLearnedOne is just one of 3022 experts in the Programming for ASP.NET Zone. 1 expert collaborated on this answer, which was graded a "B" by the asker.
 
 
20081119-EE-VQP-48