From: DavidC on
I have a FormView that is inside an UpdatePanel that I use for inserting new
records. However, when the ItemInserted runs it calls a code-behind page that
contains code to set the dropdown and default values in preparation for
additional new records. See the code below. The NewTrans() subroutine is not
firing. How can I make it run? Thanks


Protected Sub fvIncExpTrans_ItemInserted(ByVal sender As Object, ByVal e
As System.Web.UI.WebControls.FormViewInsertedEventArgs) Handles
fvIncExpTrans.ItemInserted
NewTrans()
lvIncExpTrans.DataBind()
End Sub


--
David