Hello,
How to search a word in jsp.
For example,
The word "JSP" is stored in the database and the user is searching the word "javaserverpage ". JSP and javaserverpage are same. Then it should return the value.
By,
P.Padmanabhan
User Profile
Collapse
-
-
Doubt in Oracle Query
Hai,
I am having two tables. one is login table and another one is newemployee table.
Login Table:
create table Login(UserType varchar(30),Use name varchar(30),Pas sword varchar(30),Use rname datetime,Logout Time datetime,LoginD ate datetime)
NewEmployee Table:
create table NewEmployee(Tit le varchar(30),Ful lName varchar(30),IdN o varchar(10),Cat egory varchar(50),Dep artment varchar(50),Emp loymentType... -
-
Hai,
It is better if you send your code.... -
-
-
-
Submit Button in JSP
Hai,
Whether it is possible to use two submit buttons in same page(Jsp)
Thanks in Advance
P.Padmanabhan -
I think it is possible. Just convert your java file into an exe. Then it is possible i think so
By,
P.PadmanabhanLeave a comment:
-
-
Encryption and Decryption
Hai,
I am facing one problem in Encryption(Java ). I want to get a string from the user and split that string into characters. After splitting that string into characters, i am changing that character into integer and adding some value to it. what my problem is after adding that value i want change that into String and Store that String in the database.
The Code is
import java.io.*;
import java.lang.*;... -
import java.io.*;
import java.lang.*;
class encrypt1
{
public static void main (String args[])
{
String name="welcome";
char ch[]=new char[20];
int j;
char c1;
for(int i=0; i<=name.length( )-1; i++)
{
ch[i]=name.charAt(i) ;
j=ch[i]+5;
c1=(char)j;
System.out.prin tln(c1);...Leave a comment:
-
Encryption and Decryption
Hai,
I am facing one problem in Encryption(Java ). I want to get a string from the user and split that string into characters. After splitting that string into characters, i am changing that character into integer and adding some value to it. what my problem is after adding that value i want change that into String and Store that String in the database.
Thanks in Advance
No activity results to display
Show More
Leave a comment: