Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for stephy1

hi, I have a browse button for sending single image with other text inputs in jsp type I have chosen Multipart-Form data . I got 'parameter not set error' for blob field. I am using MySql database. I am using DefaultFileItemFactory clss [CODE] FileItemFactory factry= new DefaultFileItemFactoy(); FileUpload upload= new …

0
53
Member Avatar for stephy1

This is my code. [CODE] <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Registration Page</title> </head> <body background= "bg8.jpg" width="1000" height="1000" alt="work1"> <form action="clientlogin.jsp"><table> <tr> <td> Company Name</td><td> <input type="text" name="cname" value="" /></td> </tr> <tr> <td> Password </td><td><input type="password" name="pwd" value="" /></td> </tr> <tr> <td>Location of company </td><td><input type="text" name="location" value="" /></td></tr> …

Member Avatar for ~s.o.s~
0
143
Member Avatar for stephy1

I got one interview question, what's the advantage of objects in java ? I surfed, surfing regarding these.

Member Avatar for Momerath
0
69
Member Avatar for stephy1

How to do form based authentication? I submit my code here. [CODE] <html> <head> <title>Enter your name and password</title> </head> <body bgcolor="#999966"> <p>&nbsp;</p> <form method="POST" action="Order.jsp"> <p><font color="#800000" size="5">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Enter your company name:</font><input type="text" name="coname" size="20"></p> <p><font color="#800000" size="5"> Enter your password:</font><input type="password" name="password" size="20"></p> <p><input type="submit" value="Submit" name="B1"></p> <% …

Member Avatar for masijade
0
115
Member Avatar for stephy1

Is there anything like that links should be given inside(outside) the <form></form> tags. Can form tag be left without any action?

Member Avatar for masijade
0
305
Member Avatar for stephy1

java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in UPDATE statement.[CODE] String id= t1.getText(); int c1=Integer.parseInt(rc1.getText()); /* rc1 is a radiobutton */ statementobj.executeUpdate("Update tablename(fieldvalue) values('"+c1+"')where ID='"+id+"'"); [/CODE]

Member Avatar for stephy1
0
190
Member Avatar for stephy1

I am having one Authentication frame in swings. i have created another frame where authentication page on successful completion of verification should go. How to link or connect these two things? I am using Swings with Netbeans. Is there any UserInterface controls in netbeans or i have to code inside …

0
69
Member Avatar for stephy1

Can anybody suggest me a tutorial for Perl. I have to prepare for a interview. And have to practise

Member Avatar for deepakkrish
0
89
Member Avatar for stephy1

I am retrieving values from database. I initialized a variable outside the loop. I am using while loop to move one record after other to last using ResultSet object.next(). Inside the while I am assigning the record value to the variable initialized outside while. But It shows variable might not …

Member Avatar for VernonDozier
0
172
Member Avatar for stephy1

I got Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at this line.[CODE]File f1= new File(args[0]);[/CODE] I guess i have to give a command line argument. How to give a file as command line argument. Or is this someother one?

Member Avatar for masijade
0
717
Member Avatar for stephy1
Member Avatar for masijade
0
53
Member Avatar for stephy1

In which package is Grid(in-built) class is there? I guess util. But Grid creation using create() shows error.

Member Avatar for stephy1
0
106
Member Avatar for stephy1

i have a codelike this: [CODE] do { int i; }while(i!=0); [/CODE] Shows error "Cannot find symbol i"

Member Avatar for masijade
0
105
Member Avatar for stephy1
Member Avatar for stephy1
0
372
Member Avatar for stephy1

I have 3 threads. 3 are going to do a different tasks , so different run() methods. How to overload run() method?

Member Avatar for stephy1
0
88
Member Avatar for stephy1

I got error :At the constructor MyStackThreads "class , interface or enum expected" [code]import java.util.*; import java.io.*; class MyStackThreads extends Thread { Stack thestack= new Stack(); String expression; String splitexpr[]; MyStackThreads[j] { public void run() { try { DataInputStream dis=new DataInputStream(System.in); expression=dis.readLine(); for(int i=0;i<expression.length();i++) { splitexpr=expression.split(expression); thestack.push(splitexpr[i]); } } catch(IOException …

Member Avatar for stephy1
0
379