{ Published : September 06, 2013 // Post an Awesome Comment }
You can find string in an array using two methods. (I know there are plenty of methods, but two methods are most common)Method 1
You can loop each item of an array and compare each item of the array with the items that are to find. If match found it return true otherwise it returns...
Read More
{ Published : September 06, 2013 // Post an Awesome Comment }
In this tutorial, I’ll show you how to validate TextBox for Alphabets, Numbers or AlphaNumeric Values. If a TextBox is validated only for Numeric, It should not accept other characters. If its validated for alphabets it should not accept other characters. Its better to make methods for...
Read More
{ Published : June 21, 2013 // Post an Awesome Comment }
Plugin Information
Plugin: SC Popup Subscriber Form
Author: Anas Mir
Requires at least: 3.0
Tested up to: 3.9.1
SC Popup Subscriber Form WordPress Plugin.
jQuery Popup Feedburner Subscriber Form appears on Page Load.
You can
1. Enable/disable jQuery Popup Subscriber Form from admin panel
2. You...
Read More
{ Published : June 13, 2013 // Post an Awesome Comment }
TreeView Control is most important and useful control. Basically TreeView control allows you to display data in hierarchical form. In this tutorial, you will learn, how TreeView Menu can be populated from databas. I’ll use User_Menu table to load data to...
Read More
{ Published : April 05, 2013 // Post an Awesome Comment }
Plugin Information
Authour: Anas Mir
Requires at least: 3.0
Tested up to: 3.9.1
WP Post Navigation Plugin gives you facility to show Previous and Next Post Links on Single Post Page.You’ve the option to set Post Navigation Bar at Bottom, Top or both Top & Bottom.
You can apply CSS...
Read More
{ Published : March 26, 2013 // Post an Awesome Comment }
16. The curly braces should be on a separate line and not in the same line as if, for, etc.
C#
if ( ... )
{
// Do something
}
1234
if ( ... ) {// Do something}17. Use a single space before and...
Read More
{ Published : March 26, 2013 // Post an Awesome Comment }
11. Class & Method Names
Use Pascal casing for class names and method names like in following code example
C#
public class HelloWorld
{
void SayHello( string name )
{
...
}
}
1234567
public class...
Read More