Here am going to explained with an example , how to implement jQuery UI DatePicker Calendar with ASP.Net TextBox.
.aspx code
<script src="../Scripts/jquery-1.12.4.min.js" type="text/javascript"></script>
<script src="../Scripts/jquery-ui-1.12.1.min.js" type="text/javascript"></script>
<link href="../Content/themes/base/jquery-ui.css"...
Tuesday, August 22, 2017
Thursday, August 10, 2017
ASP.NET MVC interview questions & answers
What is MVC (Model View Controller)?
Answer:
MVC is an architectural pattern which separates the UI and Data Model and business logic. It’s divided into three parts, Model, View, and Controller.
1. The Model represents the data and pass it to view (Database objects).
2. The View displays the data and responsible for look and feel of the page...