hi
How do i allow only update but not insert: Thanks
How do i allow only update but not insert: Thanks
<telerik:GridTemplateColumn DataField="SellPrice"
DataType="System.Decimal" HeaderText="Sell Price"
SortExpression="SellPrice" UniqueName="SellPrice">
<EditItemTemplate>
<asp:TextBox ID="SellPriceTextBox" runat="server"
Text='<%# Bind("SellPrice") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="SellPriceLabel" runat="server"
Text='<%# Eval("SellPrice") %>'></asp:Label>
</ItemTemplate>
</telerik:GridTemplateColumn>