Matthew Williams

Greenhorn
+ Follow
since Aug 01, 2002
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 Matthew Williams

Nevermind. I guess that the answer is returned in Radians. I needed it to be in degrees. Simply used Math.toDegrees and it worked just fine.
Sorry to bother.
Matt
21 years ago
OK, so this is really annoying me. I am trying to get Math.acos(-0.1) to return 95.73... because that is the correct answer but it keeps giving me back 1.6709637479564565 What am I doing wrong here? Thanks for the help in advance.
Matt
21 years ago
Rene,
Sorry about that. The light came on and it is working wonderfully now. Thanks a million.
Matt
21 years ago
I am not sure how that helps me out. Why can I access the bean when I am in the root folder for my htdocs and I can't when I am in htdocs/home? I have the code exactly the same.
Matt
21 years ago
So I tried to get past this by searching and couldn't find the right answer so I hope someone knows what I am doing wrong.
I have a class called "style.class" and a directory stucture for my jsp's that looks like this:
-root
--WEB-INF
---classes
----style.class
--home
---index.jsp
--index.jsp
I use the following code to access the bean on the index.jsp page that is in the root folder and it works fine.
<jsp:useBean id="styler" class="style" scope="request" />
When I use the code on the index.jsp page in the home folder I get a class not found error. I am just loading the bean, and I don't do anything with it yet. Why doesn't it see the bean, but the other page has no problem?
Thanks in advance.
Matt
[ August 01, 2002: Message edited by: Matthew Williams ]
21 years ago