Category: My Blog

  • Blog
  • Category: My Blog

Angular 1.5 packages for Sublime Text 3

One of my friends was using Sublime text 3 as  editor for the Angular.js application but he was using it without packages so he has to do manually all the things. I suggested him few packages and now he is much more productive than ever. So in the blog post, I’m going to share few

applying CSS in multiline textbox of asp.net

I have seen many time whenever we try to apply css classes to the the multi line text of asp.net. It does not work.It may happened due to the browser treat that text box as the text area. So you can do it with defining text area element in css and it will automatically apply

What is Blog & RSS

Lots of people don’t know about blog and rss. I have found a great atricle in msdn which is explaining all aspects of the Blog and RSS.Here is the link … http://msdn.microsoft.com/msdnmag/issues/04/04/XMLFiles/

C# null-coalescing operator ??

C# language provides many features and null-coalescing operator(??) is one of them. It’s a great operator to check whether object is null and if it is null then it will provide a default value. I have seen most of the people are not using while it’s a great feature. So I decided to write a