jQuery UI is a jQuery plug-in which contains widgets and it is tightly integrate with jQuery API. To include jQuery UI across your MVC application refer the below scripts in layout view.
<script src=”~/Scripts/jquery-1.8.2.min.js”></script>
<script src=”~/Scripts/jquery.unobtrusive-ajax.min.js”></script>
<script src=”~/Scripts/jquery-ui-1.10.2.min.js”></script>
jQuery UI can be added to your MVC application using Nuget. . Continue reading...
File Explorer is a great way to see the files and folders on your computer as well as libraries, folders and control panel.This post outlines some enhancements and tips in using File Explorer in Windows 8.
1. The first thing in File Explorer which you can notice is the menu is a ribbon menu.
The . Continue reading...
This post outlines Top links for Microsoft developers in May week2.
Windows Blue public preview available date
Build conference will announce the Windows Blue public preview. “Windows Blue” is a code name for the next release of Windows. If you attend the Build conference then you will get the Windows Blue preview.
Visual Studio 2012.3(Update 3) “go live” . Continue reading...
ASP.NET ListView Control has a great features that GridView and Repeater controls had control over the markup. The ListView Control allows you to display the data in various formats including grid format, bulleted list format and in flow format. You will be having the better control on HTML and CSS to format the data. This . Continue reading...
Validating the user input and showing a user-friendly error message is an important step in Web Application development. ASP.NET MVC framework provides validation features which helps developer to validate model values. The validation features in MVC allows you to write the validation using attributes which is called data annotations. This post outlines the data annotation . Continue reading...
This post gives you the links for latest announcements for Microsoft developers.
Announcing the Release of WebMatrix3
As most of the developers probably know that WebMatrix is free light-weight tool for building ASP.NET applications. There are tons of new features in this release including Windows Azure integration, ScottGu outlined the features here and this tool can be . Continue reading...
Caching is a way which you can use to improve the performance of an ASP.NET Web applications. Caching is a location where you can store the data and access quickly. You have to use caching carefully and this post explains different caching mechanisms that available in ASP.NET web applications.The three ways that you can use . Continue reading...
The code-first approach of Entity Framework creates the database in LocalDB instance of SQL Server Express. The Entity Framework uses the model’s property names and data types to create the tables.Entity Framework uses EdmMetadata table to synchronize model classes with the database schema. To keep the database in sync with the model you need to . Continue reading...
Last week Microsoft announced general availability of Infrastructure as a Service(IaaS) support for Windows Azure. You can signup here to see what is new in this release? Key Enhancements are made in General Availability like creating a new virtual machine and virtual networks in Windows Azure. This post outlines the steps to create a new . Continue reading...
What is Scaffolding?
Scaffolding in ASP.NET MVC generates the code for create, read, update and delete operations in your application. This post outlines the different Scaffolding templates available in MVC4. If you do not like the default scaffolding then you can customise the code generation.You need a model to start working with scaffolding so build a . Continue reading...