(Mohammad Azam) Dynamic DropDownLists allows the user to select an item from the first dropdownlist which populates the second dropdownlist based on the selection of the first dropdownlist. In this article we are going to demonstrate how to implement dynamic dropdowns using ASP.NET MVC 3 framework.
Tag: Development
Using JavaScript View Engines in the ASP.NET MVC
(Jovan Popovic) Microsoft ASP.NET MVC framework follows a standard MVC pattern – Model contains data that will be shown, controller performs actions when some event happens, initializes model and passes it to the view, and view takes a model and renders HTML output that would be sent to the client b
Using AntiXSS 4.1 Beta as the Default Encoder in ASP.NET
(Jon Galloway) Cross-site scripting attacks, or XSS, are a common web application vulnerability in which an attacker uses your website to present malicious code to another user. OWASP sums it up like this:
Using Forms Authentication in ASP.NET MVC Applications
(Bipin Joshi) Most of the real world web applications require security in one form or another. As far as ASP.NET is concerned Forms Authentication is the most popular and common method of protecting your website from unauthorized access.
Private Variables Do Not Necessarily Break Prototypal Inheritance In Javascript
(Ben Nadel) After blogging this morning about how poor constructor logic can break prototypal inheritance in Javascript, I wanted to clarify that I was not trying to imply that the use of “private” variables breaks prototypal inheritance.
Introduction to ASP.NET MVC 3
(ambilykk) ASP.NET MVC framework follows the well-defined MVC pattern to create a web application. MVC design pattern is used to separate the different parts of the application for more scalability, extensibility and testability purpose.
Arrays in C#
(Mayur Gujrathi) Arrays are a set of similarly typed values stored sequentially either as a single dimension, two dimensions or jagged.
Your Javascript Constructor Logic May Break Prototypal Inheritance
(Ben Nadel) Yesterday, I was playing around with extending the EventEmitter class in Node.js when it suddenly occurred to me that I didn’t know enough about the implementation of the EventEmitter constructor.
Objects With Customizable Properties
(s_mon) Why did I write this? I was in need of a more or less dynamic class where I could customize properties by configuration.
Database Initializers and EF Code First – Database.SetInitializer
(David Hayden) In addition to the features mentioned in the tutorials above, another feature worth mentioning are Database Initializers. Database Initializers allow you to run custom logic the first time a DbContext class is first used in your application. In the example below I will use it to popul
