Author: admin

  • Blog
  • Author: admin

SSW Rules to write better software and website.

Do you believe in standards ? Lots of people like me believe in maintaining standards, How to write software, how to write code and how to write stored procedure. I have found a great link that contains almost all the links for every standards beginning from project management to email and phone communication. They have

ASP.NET AJAX – Things To Know

Ajax is one of the hottest buzz in today’s web development world and Google and some other companies have used Ajax very wisely to improve his web applications and services. Every web developer is thinking about ajax. Ajax is a universal technique you can use it with any platform. Whether it is php,jsp,pearl,javascript,html,coldfusion,asp or asp.net

What is diffrence between string and String in C#.net

There is no diffrence between string and String. string is a alias created by microsoft for System.string.There are some other datatypes for which microsoft has created the alias.These are the aliases defined:string->System.Stringsbyte->System.SBytebyte->System.Byteshort->System.Int16ushort->System.UInt16int->System.Int32uint->System.UInt32long->System.Int64ulong->System.UInt64char->System.Charfloat->System.Singledouble->System.Doublebool->System.Boolean decimal->System.Decimal

Ternary operator in VB.NET

We all know about Ternary operator in C#.NET. I am a big fan of ternary operator and I like to use it instead of using IF..Else. Those who don’t know about ternary operator please go through below link. http://msdn.microsoft.com/en-us/library/ty67wk28(v=vs.80).aspx Here you can see ternary operator returns one of the two values based on the condition.