ramkumar chandramohan

Greenhorn
+ Follow
since Nov 19, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by ramkumar chandramohan

Is there any method to show progress bar during File Uploading process in java based application.
Thanks in anticipation,
Ramkumar.c
22 years ago
JSP
hi there,
I have a problem in configuring the tomcat4.0.
The thing is i loaded all my JSP pages to our server.
It looks something like this ,
http://www.mywebserver.com:8080/folder/Login.jsp.
but when i type only www.mywebserver.com:8080/folder/Login.jsp.
i am getting page not found error. i.e i need to type the whole URL. so how to configure to run this.please help me out.
Thanks
Ramkumar
22 years ago
hi vasu,
Then you need to use Vectors to display all the records.

Originally posted by vasudevan gopalan:
hai ram,

i am using string datatype as primary key
bye,
vasu


23 years ago
JSP
hi
Ya, u can go for Jrun studio from Allaire (or)Itellij Idea 2.0
Hope this helps u.
bye
Ramkumar.c

Originally posted by Tom Tang:
I'm new to JSP. What editor would you recommend to create JSP? Use html editor like HTMLKit or Java editor like Kawa or JCreator?
Another question is how to debug JSP. Is there a compiler for that?


23 years ago
JSP
hi ,
Ya i did, but still i am getting a problem , can u give me some more details.This what i did...
<%
java.io.File f1=new java.io.File("F:/test/1.html");
java.io.File f2=new java.io.File("F:/test/2.html");
out.println(f1.renameTo(f2));
%>
please suggest me..
Thanks
Ramkumar.c

Originally posted by dagmar timler:
You would use java.io.File:
create a File object for each file that you need in folder "A", then use the renameTo(File) method to rename(move) the files into "B" folder. (you have to create File's in folder "B" that corresponds for each File in "A")
Does this help, or do you need more specifics?


23 years ago
JSP
hi ,
i have a problem in moving files from one directory to the another in JSP, Say i have some two to three files in a folder "A" and i want move all this files to the another folder "B".How can i do this.
please help me out.
Thanks
Ramkumar.c
23 years ago
JSP
hi ,
I am retrieving the date from the database and i want to convert it to MM/DD/YYYY format
Please help me .
Thanks
Ramkumar.c

23 years ago
JSP
hi dharmesh,
Thanks for ur timely help.
bye
C.Ramkumar

Originally posted by Dharmesh Chheda:
[B]
you need to get your date string in the proper format meaning get it in the format
"01-12-1999 12:00:00" and insert into the database field which is of DATE type
[/B]


23 years ago
JSP
hi vasu,
let me know ,What is ur primary key ie int ,string etc,
if int it is easy.
ram

Originally posted by vasudevan gopalan:
Hi everybody,
In JSP how to split the records so that only a certain number of records can be shown at a time.For eg 10 records in first page and next 10 records in second page and so on.
bye
Vasu


23 years ago
JSP
hi Preety,
Coldfusion as such has lot of flexiblities,
1)working with Queries is more simpler then JSP.
2)Unlike java no Casting problem in Coldfusion.
3)File handling, Mailing are very easy with coldfusion
4)Depends on the Project u r goin to work ie the more the functionality better is the cold fusion.
strictly speaking coldfusion is the simplest.

Originally posted by Preety Agarwal:
Hi All
We are in the process of finalizing between JSP or coldfusion....
I have been asked to describe the comparison both. I HAVE NO IDEA OF COLDFUSION... i am always for JSP pages...Can some of you who have worked in both tell me why you choose oneover the other...What are the factors i should look into....catches etc...
Where to get some more information on that.
Please help...I am lost
Preety Agarwal


23 years ago
JSP
hi ,
Ya,date not being inserted at all and the exception being thrown

Originally posted by dagmar timler:
what exactly is your problem?
- the date not being inserted correctly?
- the date being inserted as a different date?
- the date not being inserted at all?
- an exception being thrown?


23 years ago
JSP
Hi,
In JSP pages, I want retrieve 10 records per page from SQL server database thro JDBC, SO i used stmt.setFetchSize(10);
method . ofcourse my primarykey value is an integer, but while execute, throwing error saying that the method not found in SQL statement. what should i do.
Thanks
Ramkumar.c
23 years ago
JSP
hi sanj,
Thanks, it all works fine.
Ramkumar.c

Originally posted by sanj singh:
Hi Ramkumar
Try doing this ..
session.setAttribute("nameForIdentification",object);
and then you can retrieve the object from the session this way...
session.getAttribute("nameForIdentification");
remember to cast the object to appropriate type.
Hope this helps.
regards
sanj


23 years ago
JSP
hi,
NO, the thing is i want to know how to set and retrieve session values in JSP pages.May be i look for a code.
Thanks in anticipation
Ramkumar.c

Originally posted by sanj singh:
Hi Ramkumar
session is an implicit object like request,response etc..You don't need to create an instance of this object in JSP.
regards
sanj


23 years ago
JSP
hi ,
I am new to JSP. I like to know how to set session in JSP.
Please help me out.
Thanks
Ramkumar.c
23 years ago
JSP