how to bind maxid from table in Label using storedprocedure...
create procedure usp_GetMaxId
as
begin
select max(id) from table1
end
-call this store procedure
-by using command.ExecuteScalar get the vale and bind it to the Label
Thanks
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.