Link to home
Start Free TrialLog in
Avatar of royalcyber
royalcyber

asked on

having problem with table

Hi I need a table to look like this
-----------------------------------------------------------------------------------------------------------
Name / Title                                         Phone / Email      
(line)------------------------------------------------------------------------------------(line)
Steven-Stern test-ccim , CCIM             312-321-4512
  (no line here)                                Send Email                        Image(spanned over 6 rows)
  Chief Snack Officer                                  
  430 N. Michigan Ave.
  Suite 800
  Chicago, IL 60611
-------------------------------------------------------------------------------------------------------------
but it comes out to be like this
-------------------------------------------------------------------------------------------------------------
Steven-Stern test-ccim , CCIM        312-321-4512
 (line)
  Chief Snack Officer                            Send Email      
  430 N. Michigan Ave.
  Suite 800
  Chicago, IL 60611                                                                  ( image over here)
-------------------------------------------------------------------------------------------------------------

Any help will be greatly appreciated
it also prints lnes between each person 's data. I need a line onle between all the data

here's my code
______________________________________________________________________________
 <tr>
            <td>
              <table width="508">
                 
               <!-- To get rid of Null values -->        
               <%!
                    public String checkNull(String theValue){
                    return ( theValue == null ) ? "" : theValue;
               }
               %>

               <% if(message != null) { out.println("<br><span class='message_text'>" + message + "</span>"); } %>

               <%
                    if(search_results.size() > 0) { %>
                         <tr height="25">
                              <%-- <td bgcolor="#989898" nowrap>&nbsp;&nbsp;<a class="title_link" href="<%=chapter_name%>?action=search_members&first_name=<%= first_name %>&last_name=<%= last_name %>&city=<%=city%>&state=<%=state%>&ccim_status=<%=ccim_status%>&order_by=first_name">First Name</a>&nbsp;&nbsp;</td>
                              <td bgcolor="#989898" nowrap>&nbsp;&nbsp;<a class="title_link" href="<%=chapter_name%>?action=search_members&member_id=<%= member_id %>&first_name=<%= first_name %>&last_name=
                              <%= last_name %>&city=<%=city%>&state=<%=state%>&ccim_status=<%=ccim_status%>&order_by=last_name">Last Name</a>&nbsp;&nbsp;</td> --%>
                             
                              <th align = 'left'>Name / Title</th>
                              <th align = 'left'>Phone / Email</th>
                              <th></th>

                         </tr>
                         <%
                              String bgcolor = "#F0F0F0";
                              while(result_iterator.hasNext()) {
                                   ChapterMember next_record = (ChapterMember)result_iterator.next();
                         %>
                              <tr>
                                   <td>
                                        <tr>
                                             <td nowrap><a href="<%=chapter_name%>?action=show_memberDetail&eid=<%= next_record.getMember_ID() %>"><%=next_record.getFirst_name()%> <%=next_record.getLast_name()%>
                                             <%if(next_record.getMember_class().equals("DESIGNEE")){%>, CCIM<%}%></a>
                                             </td>
                                             <td><%=next_record.getPhone1()%></td>
                                             <td></td>

                                        </tr>
                                        <tr>
                                             <td nowrap>&nbsp;&nbsp;<%=next_record.getTitle()%></td>
                                             <td><a href="mailto:<%=next_record.getEmail()%>">Send Email</a></td>
                                             <td></td>
                                        </tr>
                                   
                                             <%
                                                  if(!checkNull(next_record.getAddress1()).equals("")) { %>
                                                  <tr><td>&nbsp;&nbsp;<%= next_record.getAddress1()%></td></tr>
                                             <% } %>


                                             <%
                                                  if(!checkNull(next_record.getAddress2()).equals("")) { %>
                                                  <tr><td>&nbsp;&nbsp;<%= next_record.getAddress2()%></td></tr>
                                             <% } %>


                                             <%
                                                  if(!checkNull(next_record.getCity()).equals("")) { %>
                                                  <tr><td>&nbsp;&nbsp;<%= next_record.getCity()%>, <%=next_record.getState()%> <%=next_record.getZip()%></td></tr>
                                             <% } %>


                                             <%
                                                  if(!checkNull(next_record.getCountry()).equals("") && !checkNull(next_record.getCountry()).equals("United States")) { %>
                                                  <tr><td>&nbsp;&nbsp;<%= next_record.getCountry()%> </td></tr>
                                             <% } %>
                                   <tr><td></td><td></td>
                                   <td rowspan ='4'>
                                   <img src ="http://www.ccim.com/services/member/profile/pictures/<%=next_record.getMember_ID()%>.jpg" width="45" height="65">
                                   </td>
                              </tr>
                              <tr>
                                             <td bgcolor=<%=bgcolor%> colspan ='4'></td>
                              </tr>
                                        <%}%>

                              <%}%>
                </table>
             </td>
         </tr>

----------------------------------------------------------------------------------------------------------------------------------
Avatar of koolie
koolie

I dont really know ASP all that much (or is this VB Script?) either way, you might want to check out this program.  I use there PHP Maker and it rocks.  Granted, it takes all of the data and just displays it in a row, but you can make custom views and then rearrange it any way you want.  They have a 30-day trial and it's not really expensive.  It has saved me tons of time, so I figure it's worth a look
http://www.hkvstore.com/aspmaker/
ASKER CERTIFIED SOLUTION
Avatar of gops1
gops1
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gamebits
I made the table you are looking for (I believe) using hard code info, since I don't have access to your server I cannot pull the variable from the db, upload this table to your server and see if this is what you want, all you have to do after that is put your code to gather the variable at the appropriate place in the table.

<table width="508" border=0>
                 
               <!-- To get rid of Null values -->        
               

               
                   
                         <tr height="25">                              
                              <th align = 'left'>Name / Title</th>
                              <th align = 'left' colspan=2>Phone / Email</th>
                             

                         </tr>
                         <tr>
                              <td colspan=3><hr>
                         <tr>
                              <td nowrap>Steven-Stern test-ccim , CCIM</td>
                              <td>312-321-4512</td>
                              <td rowspan=6 valign="top"><img src ="http://www.ccim.com/services/member/profile/pictures/.jpg" width="45" height="65"></td>
                         </tr>
                         <tr>
                              <td nowrap>&nbsp;&nbsp;Chief Snack Officer</td>
                              <td>Send Email</td>
                              <td></td>
                         </tr>
                         <tr>
                              <td colspan=2>&nbsp;&nbsp;430 N. Michigan Ave.</td>
                         </tr>
                         <tr>
                              <td colspan=2>&nbsp;&nbsp;Suite 800</td>
                         </tr>
                         <tr>
                              <td colspan=2>&nbsp;&nbsp;Chicago, IL 60611</td>
                         </tr>
                         <tr>
                              <td colspan=2>&nbsp;&nbsp;Country</td>
                         </tr>
                         <tr>
                              <td colspan=3><hr></td>
                                                     
                </table>

Gamebits