Kanan Jariwala

Greenhorn
+ Follow
since Jun 22, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Kanan Jariwala

hi all,
there r these talks i hear that SCJP objectives have changed and now include RMI and Swing, can any one throw some light, where cani find all the objectives listed
thanks kanan
hi anil,
my mail ID is kanan@mail.com, send ur tutorial over
thanks
kanan
i want the book on Java and XML
kanan
hi all,
1) Is there any library which describes tags specific for deployment descriptor of EJBs
2) Most servers provide a deployment wizard that creates the descriptor.But how do we write a descriptor manually
kanan
Hi all,
In my requirement, i have more than one images(that act like buttons), when i click on any of the imgages,
1)onClick should get invoked
2)Within the onClick()Script some hidden Input Types are set dynamically
3)the form is then submitted.
Note: onClick() works in IE , but not in Netscape.
I am looking out for a solution that will work in both
thanks
kanan
23 years ago
hi Ben,
incidently i am also working on Windows NT, jsp, Weblogic.
Also i a m new to jsp, so if u get a reply to this one, could u please forward it to me
thanx kanan
23 years ago
ClKanth,
i am new to jsp, can u help me out with more on the life cycle of jsp.
thanks kanan
23 years ago
hi ,
i am looking out for a list of all JSP 1.0 tags, can any one help me with the tags and detials of how to use them
thanks
kanan
23 years ago
hi paul is this book or a book with similar contents (EJB, servlets, JSP) avaialable on the net, free ofcourse
if yes could u pass on links
thanks
kanan
------------------
23 years ago
thanks satya, for sending MindQ,
my email address is kananj@vsnl.com
i'll do the search part,
i also had a look at the exam errata
cheers
kanan
i am looking out for more mock exams, could u tell me where i can find IBM mck, exam erratta(i saw it some where but cant recollect where), also satya i would like to look at MindQ exam(i recollect u having a soft copy) my email kananj@vsnl.com, please could u send over
thanx in advance
int i = 10;
if(i=10)
System.out.println("true")
else
System.out.println("false")
the answer here is true. The if(..) construct is suppose to take only boolean expressions, then how does this work?
1) Button okButton = new Button("ok");
public void init()
{
setLayout(new BorderLayout());
add("South", okButton);
add("North", okButton);
add("East", okButton);
add("West", okButton);
add("Center", okButton);
setSize(300,300);
}
the above displays only one button in center, why is it so??
thanks deeksha and gopinath, u'll explained that one fine
int i = 10;
int j = 10;
boolean b = false;
if(b= i == j)
System.out.println("True");
else
System.out.println("False");

This prints "True"
But if() is suppose to contain only bollean expressions,
how does this work?
Explain!!
23 years ago