
Search In
Here we will learn how to find the next element of the current.
In jquery the .next() method is used find the immediate sibling of the given element in the DOM(Document Object Model).
In .next() method only the sibling elements will be selected not
How internally BufferedInputStream work in java?
During read from a file, how or who bring bytes from the file to the internal buffer?
Wether BufferedInputStream read 1 byte at a time from internal buffer?
Hello reader's!
Today we discuss about "Creating Photo album gallery to your WordPress."
Recently, we had a person who wanted us to create a photo gallery combine with albums. He wanted that if any user click on the album then he able to see phot
Copy only columns from a datatable
Use 'clone' method to create a datatable with same structure
dtCopyColumns= dt.Clone();
This will copy only columns from dt to dtCopyColumns
Copy columns and rows from a datatable
dtCopy = dt.Copy();
I want to output a score in a file high.txt that is highest among the previous score (It is actually a guessing game) but everytime i run this code it outputs 1 as the highest score (it should be no of time i guess for example if i guess the random n
Import Data from Excel in C#
Use the code below to import data from excel
OleDbConnection cnn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=""E:\Book1.xlsx""; Extended Properties=Excel 12.0;");
OleDbCommand oconn = new Ole
The profile module is a standard Python profiler. And with the help of profile module we can run the profiler from the command line. For example you can see the below code.
#!/usr/bin/python
vara = 17
varb = 400
sum = vara + varb
print "vara + varb
There are a wide range of programming languages, platforms and web development tools accessible for business owners and web developers. Everybody has their top picks for their own reasons, and most have a safe place with a specific programming langua
Can we bind a DropDownList using List<> in Asp .Net
The Answer is :
Yes, we can bind a DropDown in Asp .Net using List<>. Please go through the following code for Example:-
Let's create a Class say DropdownClass, in the class we create
Sometimes in mysql we have to count the values that are comma separated from a field in mysql. For this we will use the length function in mysql as follows:
select LENGTH(fieldname)-LENGTH( REPLACE( fieldname , ',', '' ) )+1 from tablename where TRI
