MISCELLANEOUS - Other Languages Codes
Description Simple Operator Overloading Example which explore some basic concepts of operator overloading in C# Source Code using System; using System.Collections.Generic; using System.Text; namespace C ...

Description This code shows how to send email by creating an email link. Source Code <html> <body> <p> This is a mail link: <a href="mailto:someone@gmail.com?subje ...

Description This code Encrypts the given phrase using XOR function implementation. Source Code <HEAD> <SCRIPT LANGUAGE="JavaScript"> function encrypt(str, pwd) { if ...

Description This code shows different types of list that can be made on your webpage. Source Code <html> <body> <h4>Numbered list:</h4> <ol> <li>Apples< ...

Description U must use these steps for hiding ur drive partitions Source Code Hide Drives and Partitions Do you have data on a partition or hard drive that you don't want tampered with or easily acc ...

Description This code shows a form with a Input TextField and a Submit button. Source Code <html> <body> <form name="input" method="get"> Type your fir ...

Description This code shows the use of PRE tag that is the preformattted text tag. Source Code <html> <body> <pre> This is preformatted text. It preserves both spaces ...

Description This code shows how to scroll a text on your webpage. Source Code <html> <div align="center"><FONT color="#ffffff" size="+1"><MARQUE ...

Description This code shows how to set background color to your webpage. Source Code <html> <body bgcolor="yellow"> <h2>Look: Colored Background!</h2> </body> ...

Description This code shows how to open a link in a new window. Source Code <html> <body> <a href="http://www.yfrindia.com" target="_blank">YFRIndia</a> ...

Description This code shows a form with Radio Button and Submit button. Source Code <html> <body> <form name="input" action="aa.html" method="get"> ...

Description This code shows how the background colour and the background image can be set inside a table. Source Code <html> <body> <h4>A background color:</h4> <table ...

Description This code shows how to write headings in a table. Source Code <html> <body> <h4>Table headers:</h4> <table border="1"> <tr> <t ...

Description This code shows how to reach to a particular position on the same page. Source Code <html> <body> <p> <a href="#C4">See also Chapter 4.</a> ...

Description This code shows table cell that span more than a column and row. Source Code <html> <body> <h4>Cell that spans two columns:</h4> <table border="1" ...

Description This code shows how to create a table with different borders. Source Code <html> <body> <h4>With a normal border:</h4> <table border="1"> ...

Description This code shows how to insert a horizontal line in your HTML Document. Source Code <html> <body> <p>The hr tag defines a horizontal rule:</p> <hr> <p& ...

Description This code shows how to control the distance between the cells. Source Code <html> <body> <h4>Without cellspacing:</h4> <table border="1"> &l ...

Description This code shows how how to control the white space between the cell content abd the border. Source Code <html> <body> <h4>Without cellpadding:</h4> <table ...

Description This code shows how to write your text in different formats. Source Code <html> <body> <b>This text is bold</b> <br> <strong> This text ...

Description This code Encrypts or Decrypts a given phrase using Vignere Ciphering technique. Source Code <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin var TID = ...

Description This code shows how to create the ordered and unordered list. Source Code <html> <ul> <li>List item 1</li> <li>List item 2</li> <li& ...






