I want to display the next ID (Identity seed) number that's in the database in a label on my form.
Is there a way I can do something on page load to get max(CareID) + 1 to display in label2.text when the page loads?
I want the next number to be displayed in this label:
MRID: <asp:Label ID="Label2" runat="server" Text=""></asp:Label>
Thanks!