Hi all,
<asp:Button runat="server" ID="Button1" Text="Create" onclick="Create_Click" CssClass="FadeOutOnEdit"/>
This runs the Create_Click method in the aspx.cs page.(Which adds data to the DB)
I would like to run this method and also navigate to a different page when the btn is clicked.
I have been trying:
NavigateUrl="~/Invoices/List.aspx"
ContinueDestinationPageUrl="~/Default.aspx"
any suggestions
Thank ye
<asp:Button runat="server" ID="Button1" Text="Create" onclick="Create_Click" CssClass="FadeOutOnEdit"/>
This runs the Create_Click method in the aspx.cs page.(Which adds data to the DB)
I would like to run this method and also navigate to a different page when the btn is clicked.
I have been trying:
NavigateUrl="~/Invoices/List.aspx"
ContinueDestinationPageUrl="~/Default.aspx"
any suggestions
Thank ye