Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: rabix
  • Order by date
  1. rabix

    passing form values

    hi all, i got a jsp page with a check box in it. how can i check whether it is checked or not in another jsp page? rgds, Rabix
  2. rabix

    problem with type casting

    hi, this is the way i have made the declarations List AHVSalaryList=new ArrayList(); AHVSalaryList.add(new Double(PersonBean.getAHVSalary())); and getAHVSalary() returns double. double AHVSalarySum = 0.0; but when i do...
  3. rabix

    Incompatible Type error

    hi casey, thanx for ur help. but i am still in trouble. this is the way i have made the declarations List AHVSalaryList=new ArrayList(); AHVSalaryList.add(new Double(PersonBean.getAHVSalary())); and getAHVSalary() returnd double. double AHVSalarySum = 0.0; but...
  4. rabix

    Incompatible Type error

    hi casey, thanx for the solutin. well i got a small doubt. how do u convert from Double to double or Integer to in? thanx in advance. rabix
  5. rabix

    incompatible type error

    hi, i am trying to put some integer vales from the instance of a class to a List by List sexList=new ArrayList(); sexList.add(Integer(PersonBean.getSex())); in a jsp page. but when i run the page i get an error Icompatible type for method. Can't convert double to...
  6. rabix

    Incompatible Type error

    hi, i am trying to put some integer vales from the instance of a class to a List by List sexList=new ArrayList(); sexList.add(Integer(PersonBean.getSex())); in a jsp page. but when i run the page i get an error Icompatible type for method. Can't convert double to...
  7. rabix

    using multiple instances of a class

    hi , i got a few jsp doubts. could anyone please help me? i am want use of many instance of a class in a jsp page. how is this possible. class Isured{ public int getCost(){ return cost; } public void setCost} ........; } } and there are two or more instances of this...
  8. rabix

    using a instance of a class in a jsp page

    hi, i got a class and its instances have different values. what i meant was that i wanted to display all those values in the jsp page. is using the vector a correct method? if so could u please explain it to me. regards, Rabix
  9. rabix

    getting values of the instances of a class

    hi, i have got a jsp page which has to take the value from the instance of a class and display it. for a single instance i am able to display the values. if the class has two or more instances how do i itrate the values and display it in a jsp page. basically i want to know how the values...
  10. rabix

    using a instance of a class in a jsp page

    hi, thanx for ur solution. i have got a jsp page which has to take the value from the instance of a class and display it. for a single instance i am able to display the values. if the class has two or more instances how do i itrate the values and display it in a jsp page. please help me...
  11. rabix

    retrieving values to be printed in a jsp page

    hi, i have got a jsp page which has to take the value from the instance of a class and display it. for a single instance i am able to display the values. if the class has two or more instances how do i itrate the values and display it in a jsp page. please help me on this. regards, Rabis
  12. rabix

    using a instance of a class in a jsp page

    hi, how can i make use of the instanc of a class in a jsp page. the class is not a java bean class. thanx Rabix

Part and Inventory Search

Back
Top