08/06/2014 by Nitesh

How To Get Node at a Given Point in Tree View

Friends, Today, I was working with Treeview Control and in the MouseMove event handler of the control, I was supposed to get the node of the TreeView control present at the current mouse pointer. I looked around for sometime before I figured out how this can be done. In this post, we will see how…

Continue Reading »

06/06/2014 by Nitesh

Speaking at June UG Meet on 22nd June for C# Corner Kolkata Chapter

Dear Friends, I am excited to announce that I am speaking on 22nd June 2014 on “Working with Menus in ASP.Net” at June UG Meet organized by C# Corner Kolkata Chapter. Below are the details about the event – Agenda – Working with Menus by Nitesh Luharuka Html5,CSS3 with J* libs [implementations,single page app and…

Continue Reading »

06/06/2014 by Nitesh

How To Find Controls present in HeaderTemplate or FooterTemplate of Repeater Control in ASP.Net

Friends, While working with Repeater controls we all have used the ItemDataBound event to apply changes to specific records based on the data present in the record. Many of times we have used FindControl() event to do so. In this post, we will see how can we find a control present in the HeaderTemplate or…

Continue Reading »

06/06/2014 by Nitesh

How To Get All Posts of a Specific Custom Post Type in WordPress

Friends, In our last post, we saw how can we get a list of all custom post types registered in our WordPress installation. In this post, we will see how we can get a list of all posts of a specific custom post type in WordPress. This may come handy when you are creating an…

Continue Reading »

05/06/2014 by Nitesh

How To Get All Custom Post Types in WordPress

Friends, WordPress allows users creating Custom Post Types to extend the WordPress functionality more than just a blogging platform. This post will explain how you can list all the custom post types registered with your WordPress installation by different plugins/theme. $args = array( ‘public’ => ‘true’, ‘_builtin’=>false ); $terms = get_post_types($args); foreach($terms as $term) {…

Continue Reading »

1 15 16 17 18 19 38