Category: My Blog

  • Blog
  • Category: My Blog

C# 4.0-Dynamic Data Type, Difference between var and dynamic

C# 4.0 introduces a new keyword called ‘Dynamic‘. It can consume any object anything. Let’s see some examples for that. dynamic intExample = 1;Response.Write(intExample);dynamic floatExample = 2.5;Response.Write(floatExample);dynamic stringExample = “DotNetJaps”;Response.Write(stringExample); It will print out put on web page as following. Now, you will have question what’s new in that. It could be also done with

Regular Expression Library

Regular expression is hottest technology nowdays. It saves lots of time of development. In asp.net we can use regular expression in regular expression as regular expression validation control. I have found the very good resource of ready made regular expression. Here is the link for that. http://regexlib.com/Default.aspx The RegExLib.com, the Internet’s first Regular Expression Library.

What is Linq

Linq is the one of the most hottest release from Microsoft. Still lots of people don’t know what linq is. I have found a great articles from Saqib Ullah. This articles covers all the aspects of Linq in each and every way. Following is the link for that article… http://geekswithblogs.net/technetbytes/archive/2007/04/30/112129.aspx

How to upload file with Express,Pug and Multer in Node.js

In this blog post, We are going to learn how to upload a file with Express, Pug, and Multer in Node.js. In this blog post, we will learn how we can upload file with multer middleware in express framework with node.js So here in for the demo purpose, we are going to use express application.