Data display issue on the frontend

moumona

New member
Joined
Aug 28, 2006
Messages
3
Programming Experience
Beginner
I am trying to display some text from the database to the application.

The text has url like:
https://something.com/somethingUI/faces/jsps/ProviderSearch.jsp?
mzip=19426&dzip=19426&mssprod=OAP&dssprod=DHMO&pharmacy=Y&nsp=Y&netid=PA300&snetid=OA001&lob=&fsa=N&page=cpwwwelcm&CCN=N&CP=&MP=&T2C=&T2P=&T1C=&T1P=&MemDed=600&FamDed=1800&IHDed=500&OHDed=&ARIDed=&MemOOP=2000&FamOOP=6000&MemCOI=&IHCOI=20&OHCOI=20&ARICOI=&IHCopay=&OHCopay=&MRICopay=&AGG_DED_CD=&RptCrd=Y&RXQUOTES=Y&ACCOUNTS=N&token=b49KtmRpoXM%3DgA97Dkh2hgBFnCgNGqiKEg%3D%
3D&dnetseqnum=00000003&talkToANurse=Y

All the text is wrapping fine but for some reason the highlighted part of the url is not wrapping which is causing the page to beyond the page size. I want it to wrap so that all the content is seen without scrolling.


this is my code on the .aspx page:

HTML:
<tr><td width="650" colspan="2" height="1px" align="left"><hr width="50%" size="1" color="#999999"></td></tr>
								<tr>
									<td width="650" colspan="2" align="left">Description: </td>
								</tr>
								<tr>
									<td width="500"colspan="2">
										<table width="500">
											<tr>
												<td width="10"> </td>
												<td width="500" align="left"><%# GetDescription(DataBinder.Eval(Container.DataItem, "description")) %></td>
											</tr>
										</table>
									</td>
								</tr>

Can anybody please help me with this? Any help would be very much appreciated.
 
Back
Top