e.NewValues value is missing

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

I am looking for the newly entered value in the GridView control and there
is no values retuned in the e.NewValues collection (count is 0)

Thank you,
Samuel
 
Are you using The <%#Bind... %> syntax? E.g two-way databinding?
 
<EditItemTemplate>

<asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("fTaskType")
%>'></asp:TextBox>

</EditItemTemplate>

<ItemTemplate>

<asp:Label ID="Label1" runat="server" Text='<%# Bind("fTaskType")
%>'></asp:Label>

</ItemTemplate>



sam
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top