In the database column1 have date like 2011-03-03 but I want to show only 03-03 and in column2 have string like BHEL.NS but I want to show only BHEL.
<TD><center><%=rs.getString(1)%></center></TD>
<TD><center><%=rs.getString(2)%></center></TD>
How to do this?
thanks in advance..