Tuesday, 26 December 2017
Tuesday, December 26, 2017
In this article, we will learn how to set up an environment for building the first angular app (with Visual Studio Code). I also recommend to read my article written on Typescript:
Let’s Start:
Go to https://nodejs.org/en/download/ and download Nodejs (which is a JavaScript runtime built on Chrome’s V8 runtime engine).
Let’s Start:
Go to https://nodejs.org/en/download/ and download Nodejs (which is a JavaScript runtime built on Chrome’s V8 runtime engine).
Sunday, 6 August 2017
Sunday, August 06, 2017
The AdventureWorks database is a sample database helpful for those who are new and learning relational database management system. Sample database contains database objects like the tables, stored procedures, function, triggers, indexes and sample data. Whenever a new version of SQL Server released, those newly added features will be added to Sample Database.
Wednesday, 2 August 2017
Wednesday, August 02, 2017
“FizzBuzz” is an interview question asked during interviews to check logical skills of developers.
For Demonstration, we will print number starting from 1 to 100. When a number is multiple of three, print “Fizz” instead of a number on the console and if multiple of five then print “Buzz” on the console. For numbers which are multiple of three as well five, print “FizzBuzz” on the console.
For Demonstration, we will print number starting from 1 to 100. When a number is multiple of three, print “Fizz” instead of a number on the console and if multiple of five then print “Buzz” on the console. For numbers which are multiple of three as well five, print “FizzBuzz” on the console.
Sunday, 7 May 2017
Sunday, May 07, 2017
Monday, 27 February 2017
Monday, February 27, 2017
What is TypeScript?
TypeScript is a typed superset of Javascript that compiles to plain JavaScript. It adds static typing, using type Annotation, which enables type checking at the compile-time and also adds class-based OOPS concepts to JavaScript. As we know, TypeScript is a superset of JavaScript, which makes any JavaScript program a valid TypeScript program. It is free, open source and a cross-platform programming language developed and maintained by Microsoft. Even AngularJS 2.0 is written in TypeScript.
TypeScript is a typed superset of Javascript that compiles to plain JavaScript. It adds static typing, using type Annotation, which enables type checking at the compile-time and also adds class-based OOPS concepts to JavaScript. As we know, TypeScript is a superset of JavaScript, which makes any JavaScript program a valid TypeScript program. It is free, open source and a cross-platform programming language developed and maintained by Microsoft. Even AngularJS 2.0 is written in TypeScript.
Thursday, 16 February 2017
Thursday, February 16, 2017
In this article, we will learn How to use WebView in Xamarin. If you are new to this Series on Xamarin then I suggest you read my previous articles of this series.
- Hello World Application in Xamarin
- Creating Splash Screen for Android App in Xamarin.
- Auto Complete Text View in Xamarin
- CheckBox Widget in Xamarin
- Pass Data From One Activity to Another Using Intent in Xamarin
Saturday, 21 January 2017
Saturday, January 21, 2017
In this article, we will learn, how to use OutputCache Action filter in ASP.NET MVC Applications. In previous ASP.NET MVC tutorials of this series, we saw,
- Creating First Application In ASP.NET MVC
- Pass Parameter Or Query String In Action Method In ASP.NET MVC
- Passing Data from Controller To View In ASP.NET MVC
- Strongly Typed View Vs Dynamically Typed View In ASP.NET MVC
- Working With Built-In HTML Helper Classes In ASP.NET MVC
- Inline and Custom HTML Helpers In ASP.NET MVC
- CRUD Operation In ASP.NET MVC Using AJAX And Bootstrap
- HandleError Action Filter In ASP.NET MVC
- Deploy ASP.NET MVC Application To Windows Azure
