![How to get DropDownList selected Text in MVC controller | code first](https://yogeshdotnet.com/wp-content/uploads/Get-text-of-dropdown-at-controller.jpg)
How to get DropDownList selected Text in MVC controller | code first
As we know that whenever we want to pass dropdown text from view to controller using the model object, the value of dropdown is transferred but in some cases, we required text of the drop-down. in this article I discuss that how we can perform this. Step1: Create New...
![top npm commands](https://yogeshdotnet.com/wp-content/uploads/Top-NPM-commands.jpg)
top npm commands
Most Used NPM Commands Using of NPM commands is very easy. NPM commands are managed in package.json and package.json is used to manage project’s dependencies. The following are the top NPM commands. npm init: Displays a simple wizard to help you create and describe...
![event emitters node js | example](https://yogeshdotnet.com/wp-content/uploads/NodeJS-Event-Emitter-Example.jpg)
event emitters node js | example
What is Event and Event Emitter in Node JS An User Action i.e click Event names are defined simply by calling .emit with the event name. An object sends events using the .emit function. Events are sent to any listeners that have registered to receive events from the...
![dynamically add menu and submenus in asp.net mvc using entity framework](https://yogeshdotnet.com/wp-content/uploads/entityframework_code_first.jpg)
dynamically add menu and submenus in asp.net mvc using entity framework
In this example, I am going to create two tables(MainMenu, SubMenu) Database Script for database tables CREATE TABLE [dbo].[MainMenu]( [id] [int] IDENTITY(1,1) NOT NULL, [menuname] [varchar](max) NULL, [menuurl] [nvarchar](max) NULL, CONSTRAINT [PK_MainMenu] PRIMARY...