Let’s create a mvc application and name it mvcDemo. Let’s create a model and name it StudentModel. public class StudentModel { public int StudentId { get; set; } public string Name { get; set; } public bool IsRequired { get;… Continue Reading →
In this article we learn is that possible to make method as protected or not.
In this article we learn that is it possible to make controller as protected. No, we cannot make a controller as protected. Let’s try to make controller as protected. When we make controller as private,protected,protected internal. It is giving an… Continue Reading →
In this article we learn what a Partial View is and how to call a Partial View and in which scenario which method is good for the call.
Cross-Site Scripting (XSS) attacks are a type of injection, in which malicious scripts are injected into otherwise benign and trusted web sites.
In this article we learn what a Text Template Transformation Toolkit (T4) template is using XML.
In this article we learn what a Text Template Transformation Toolkit (T4) template is and how to customize it.
This article explains what layout is and how to use it.