hi,
I have a details view. After inserting new row to database I show a Panel with
confirmation of Insert.
protected void DetailsView2_ItemInserted(object sender, DetailsViewInsertedEventArgs e)
{
Panel3.Visible = true;
}
<asp:Panel ID="Panel3" runat="server" Visible="False">
<h2 style="padding: 6px 10px 6px 10px; color: #FF0000;">
You have successfully added a quote
</h2>
</asp:Panel>
Is it possible to make the panel return to Visible NO after 5 seconds
Otherwise it ...
Go to the complete details ...