Blogging for beginners

CHAPTER CONTENT 1. Introduction The course starts off with the introduction of blogging in the late 1990s, details about the development of content and Panda updates, which significantly affected blogging, as well as the most relevant blogging statistics. All of this illustrates the importance...

Write a Socket program in java in which client accept a number, send it to the server, server calculates its factorial and sends result to the client.

factclient.java import java.io.*; import java.net.*; class factclient{ public static void main(String argv[]) throws Exception { String n; DatagramSocket clientSocket = new DatagramSocket(); byte []send=new byte[102]; byte []resive=new byte[102]; BufferedReader inFromUser = new BufferedReader(new InputStreamReader(System.in)); ...

Write a Socket program in java for chatting application. (Use AWT)

ClientChatForm.java import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.print.PrinterException; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.net.InetAddress; import java.net.Socket; import java.net.UnknownHostException; import...

Create a JSP page to accept a number from an user and display it in words: Example: 123 – One Two Three. The output should be in red color.

NumberWord.html <html> <body> <form method="get" action="NumberWord.jsp"> <fieldset> <legend>Enter Any Number </legend> <input type=text name=num><br><br> </fieldset> <div align=center> <input type="submit" value="Display"> </div> </form> <body> </html> NumberWord.jsp <html> <body> <font...

Write a JSP script to check whether given mail ID is valid or not. (Mail ID should contain one @ symbol and atleast one Dot(.) symbol)

Email.html <html> <body> <form name=f1 action="EmailCheck.jsp"> <fieldset> <legend>Enter Email Id...!!!</legend> Enter Email Id:<input type="text" name="t1" > </fieldset> <div align=center> <input type="submit" name="Submit" value="Submit"> </div> </form> </body> </html> Emailcheck.jsp <html> <body> <%@...

Write a JSP script to accept the details of Student (RNo, SName, Gender, Computer_ Knowledge , Class) and display it on the browser. Use appropriate controls for accepting data.

student.html <html> <body> <form method=get action="Student.jsp"> <fieldset> <legend>Enter Student Details...!!!</legend> Enter Roll No :&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <input type=text name=rno><br><br> Enter Student Name:&nbsp <input type=text name=sname><br><br> Enter Gender: &nbsp...

Write a JSP script to accept username, store it into the session, compare it with password in another jsp file, if username matches with password then display appropriate message in html file.

index.html <html> <head> <title>Login Page</title> </head> <body> <form action="checkdetails.jsp"> <fieldset> <legend>Enter User Id and Password...!!!</legend> UserId:&nbsp &nbsp &nbsp <input type="text" name="id" /> <br><br> Password: <input type="text" name="pass" /> <br><br> </fieldset> <div...