.NET Resources - Articles, Blogs, Tools, Book Reviews and more...
You can find valuable .NET resources including Articles, Software tools, book reviews, blogs, links to good articles and much more.
You can make money from this site by posting original and quality articles that comply with Google AdSense policies.. Also, we offer several other reward programs including monthly profit sharing, cash rewards per post, contests & prizes etc to contributing members.
Articles
Install new version of TypeScript
In this article we are going to focus on how to install a new version of TypeScript using tsc -v command if there is already an older version of typescript installed on your computer due to Visual Studio installation.Integrating TypeScript with Sublime Text2
In this article we are going to focus on how to integrate the TypeScript with Sublime Text 2. For the basic introduction to TypeScript, TypeScript is a Super script of JavaScript and it is strictly typed language.Unable to build Unit Test project due to build error in referencing dependent project
Unable to build Unit Test project due to build error in referencing dependent project in visual studio 2013 project. Error: The type or namespace name 'xxx' could not be found(are you missing a using directive or an assembly reference?) Warning: the primary reference "xxxx\bin\Debug\xyz.dll" could not be resolved because it was built against the .NETFramework, Version=v4.5.1" framework. This is a higher version than the currently targeted framework ".NETFramework, Version=v4.5"Working with $http and json in asp.net angularjs application
In this article we are going to focus on working with $http and json data. In our ASP.NET page, we will first get the data from the Sql Server database and then convert this data into JSON format. We will then display this JSON data in the asp.net page and we will also consume this json data using $http.get in the html page.Adding and Removing javascript elements using javascript in asp.net
In this article we are going to focus on Adding and Removing javascript elements using javascript in asp.net and then using these values in our webform. Using the Request.Form.GetValues method we can retrieve the values from these controls as shown below.Consuming WCF methods using async and await in MVC 4 application
In this article we are going to focus on how to consume WCF methods using async and await in MVC 4 application. This a simple demo of how to use async/await concept in mvc 4 application while consuming WCF service.Integrating Facebook Login with MVC development project in visual studio
In this article we are going to focus on the below features: 1. Registering the MVC development project with the facebook application. 2. Integrating login functionality into the MVC development project. 3. Logging in using the Facebook Login feature.Working with AJAX in MVC application
In this article we are going to focus on Working with AJAX in MVC application. We are using AJAX because we would like to avoid reloading the complete page whenever the form is submitted to the server.Working with Areas in MVC Application
In this article we are going to focus on the following topics related to AREAS in MVC application.1. Significance of AREA in MVC
2. Creating an AREA in an MVC project
3. Significance of AdminAreaRegistration class
4. Populating the AREA
Using Dependency Injection in MVC Application
In this article we are going to focus on Using Dependency Injection in MVC 4 Application. We we also see what is loose coupling and how Dependency Injection helps in maintaining the loosely coupled code.Working with Helper methods in MVC Application
In this article we are going to focus on Helper methods in an MVC Application. We will look at the following topics :1. Creating Custom Helper Methods
2. About Built-in Helper Methods
3. About Strongly Typed Input Helpers