Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

HOW TO TAKE INFORMATION FROM USER USING HTML FORMS

When we want to take(collect) information from user or those who are visiting site, for this purpose html forms are use. for eg:- for user registration in any social site, we want to collect his personal information like his name,last name, email, a

Program to Detect and Remove Loop in a Linked List in C++?

// C++ program to detect and remove loop using namespace std; struct Node { int key; struct Node *next; }; Node *newNode(int key) //Function to create a node { Node *temp = new Node; temp->key = key; temp->next = NUL

Program to Detect and Remove Loop in a Linked List in Java?

// Program to detect and remove loop in linked list in java class LinkedList //create a node in LinkedList { static Node head; static class Node //create a node in LinkedList { int data; Node next;

Implementing Transactions in .NET

For performing transactions first you need to understand the use and things associated with it.     Transaction is a way to make operations done in such a manner so that only relevant sequence or logical things done on the client and se

How to search from a list in android?

We have a search edit text and a list in layout , activity_main.xml   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"

Maven Run Configuration to run project within eclipse

In this example, we'll see how to configure Maven to run a project on tomcat withing eclipse. It is sometimes too hard to manage the Maven project with the commands. Each time we code the project in IDE like eclipse and go to the terminal/cmd to

How to create clone of any object using jQuery?

Cloning of Object using jQuery For cloning any any object using jQuery, jQuery provides clone() method which is performing a deep copy of the set of matched elements i.e clone method not only copies the matched elements but also all descendant eleme

What is the significance of the Finalize method in .NET?

 The significance of the Finalize method in .NET In .NET the clean activity for objects i.e when they are no longer required is done by Garbage Collector. But unmanaged resources (for example: Windows API created objects, File, Database connect

Reference and Pointers in C++

REFERENCE---  A reference variable is initialized first. A reference variable is defined to indicate a variable and that reference variable can't point to the another variable. References can not be NULL. e.g of reference variable is: &nbs

How to convert shell script to php code?

My objective for posting this blog is to tell how do we convert shell scripting code to php. In some cases we need to use php code instead of executing shell script. Therefore I am writing the blog which may help someone to understand how do we conve

1 359 720
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: