Hi I using Visual Studio 2010
Please Share generate Employee ID for Register user in c# asp.net,Please post answer
Thanking You,
Venkat
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Govinda Rajulu YemineniPosted Jul 6, 2015, 3:00 AM
Jaipal ReddyPosted Jun 27, 2015, 1:39 AM
(
@Name NVARCHAR(100),
)
AS
Begin
DECLARE @ID INT
SET @ID = ISNULL(@ID,(SELECT MAX(Id) FROM tblEmployee) + 1)
Insert into tblEmployee (ID, Name, ...)
Values(@ID, )
End
Rajeesh MenothPosted Jun 27, 2015, 12:27 AM
Venkat GovindPosted Jun 26, 2015, 11:14 PM
Rajeesh MenothPosted Jun 26, 2015, 5:45 AM