icon
Leave a message

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Saturday, 2 January 2016

How to handle multiple submit Buttons with Validation on the same form MVC Razor

Note: In this topic we will discuss how to handle multiple submit buttons with types of validation required, regular expression, compare on same MVC razor form. /****** Sql Query ************************/ CREATE TABLE [dbo].[Employee]( [EmpId] [varchar](50) NOT NULL, [Name] [varchar](50) NULL, [Gender] [varchar](50) NULL, [EmailId] [varchar](50) NOT NULL, [Password] [varchar](50) NULL, CONSTRAINT [PK_Employee] PRIMARY KEY CLUSTERED ( [EmpId] ASC )WITH...