Create terms and conditions check box in bizform (Kentico CMS) with required

How to create Terms and conditions check box in bizform (Kentico CMS) with required In this post I am explain about how to create Terms and conditions check box in bizform (Kentico CMS) with required. Bizform is the one of the best feature of Kentico CMS. We can create one Bizform in Free edition. We can create bizform with just mouse clicks and few inputs (Like display name ...). No code :) You can also check with my video too [youtube=http://www.youtube.com/watch?v=pOayb25gFu0] Steps:- If...
More

Break and continue in jQuery each function(loop)

This is post I am going to explain about break and continue in jQuery each function(loop). jQuery’s functions like $.each( Object obj, Function fn ) or $().each() are not loops.These are iterative functions. $().each() is used to iterate jQuery object and you can use $.each( Object obj, Function fn ) to iterate over anything (for example, an array). jQuery loops are not like javascript (for and while loop) loops. We can use ‘break;’ and ‘continue;’ inside a loop in javascript. But it will not...
More

Convert Visual Basic for Applications Macro to C# 4.0

In this post I am go Convert Visual Basic for Applications Macro to C# 4.0 , This is really easy one. I include youtube Video also.. See this video :- [youtube=http://www.youtube.com/watch?v=at_ExhQLgm4] VBA macro code :- Sub Macro1() ActiveCell.FormulaR1C1 = "1" Range("A2").Select ActiveCell.FormulaR1C1 = "2" Range("A1:A2").Select Selection.AutoFill Destination:=Range("A1:A10"), Type:=xlFillDefault Range("A1:A10").Select With Selection.Interior .Pattern = xlSolid .PatternColorIndex = xlAutom...
More