chiatai goh

Greenhorn
+ Follow
since Mar 19, 2005
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 chiatai goh

Hi i have a problem on how to invoke a jsp page from jsp page.

I have this function in index.jsp



Where the codes in bold and italics are getting values from abother jsp (search_date).



There are three tabs in search_date jsp, the above codes are for price tab.

Im going to click on an image link in index.jsp, it will direct me to the price tab instead of two other tabs. How can i achieve this?

Thanks,

tiffany
17 years ago
JSP
Dear All,

The error message is "java.util.AbstractList$Itr@110f98f" after i had step over to highlighted red line. This method will put in DAOHIBERNATE and it extends HibernateDaoSupport:



Why it cant execute the line? Is there anything done with configuration?

This method in Action class invoke the selectFlight() from DAOHIBERNATE:



I have this for my hibernate:



This is my spring-config.xml:



Thank,

tiffany
[ January 06, 2007: Message edited by: chiatai goh ]
Hi programmers!

How can i display the datas from database into JComboBox?
This are the codes for actionPerformed:

public void actionPerformed (ActionEvent e){

JButton clickedButton = (JButton) e.getSource();

if(clickedButton == retrieving)
retrievingClicked();

JComboBox typeList = (JComboBox)e.getSource();
String typeStrings = (String)typeList.getSelectedItem();
//updateLabel(typeStrings);
typeList.addItem(typeStrings);

}


What's the next step?
[ March 19, 2005: Message edited by: chiatai goh ]
[ March 19, 2005: Message edited by: chiatai goh ]