Posted on: 4/8/2014 12:33:07 PM | Views : 407

Hi.
i have a gridview with a dropdownlists for each row. when i change the selecteditem for one of my dropdownlist it will update a cell in my gridview with the price.
But when i select another item in my other dropdownlist, it clear the last price, because it do a full postback??
<asp:UpdatePanel runat="server" ID="UpdatePanale1" UpdateMode="Conditional"> <ContentTemplate> <asp:GridView runat="server" ID="GridViewWorkplace" CssClass="mGrid" AllowPaging="false" AllowSorting="false" AutoGenerateColumns="false" Width="450px" Style="float: left; margin-left: 20px" ShowFooter="true" OnRowDataBound="GridViewWorkplace_RowDataBound"> <Columns> <asp:TemplateFiel ...

Go to the complete details ...