Hello List!
I'm having a problem getting a line break/feed on a page...I'm passing parameters from one page to another (this particular one is being passed to a textarea), and would like to pass them with page breaks between them...
Here's my current code
<script language="javascript">
openIssuesWindoid('../../GUtilities/IssueCreator/IssueCreator.asp?name=<%=session("userFullName")%>&email=<%=session("userEmail")%>&summary=Station Type Change Request&description=Location: <%=LocStringsArray(z)%>Occupant: <%=OccupantStringsArray(z)%>Current Station Type: <%=StationTypeStringsArray(z)%>&client=<%=session("currentClientID")%>&site=4-1-Where');
</script>
'IssueCreator.asp':
<tr>
<td width="100%" colspan="2">
<br>*Detailed Description:
</tr>
<tr>
<td width="100%" colspan="2">
<textarea cols="55" rows="10" name="txtDescription"><%=Request.QueryString("description")%></textarea>
</td>
</tr>
Currently in the textarea I'm seeing:
Location: Atlanta-30th Floor-3034BOccupant: Andersen, JasonCurrent Station Type: Floor Shared
What I WANT:
Location: Atlanta-30th Floor-3034B
Occupant: Andersen, Jason
Current Station Type: Floor Shared
How can I accomplish this? Someone said to use the ASCII code for the line feed, but I haven't been able to get that implemented...
Thanks in advance for your time and expertise!! It is greatly appreciated!
-jiggyg