0
我在文本區域中顯示一些數據庫數據,但我想要像在郵箱中一樣對齊此數據。如何對齊文本區域數據?請幫幫我。從文本區域中的數據庫中對齊數據
我的源代碼是在這裏:
<h3>Feedback Mail</h3>
TO
<%:Html.DropDownList("to", ViewData["EmailID"] as SelectList)%>
<% using (Html.BeginForm("SendMail", "Process", FormMethod.Post))
{%>
<table border="0">
![enter image description here][1]<tr><td> Cc</td>
<td style="width: 470px"> <input type ="text" name="cc" id="Cc" style="width: 470px" /><br /></td></tr>
<tr> <td> BCc</td>
<td style="width: 470px"> <input type ="text" name="bcc" id="BCc" style="width: 470px"/><br /></td></tr>
<tr> <td> Subject</td>
<td style="width: 470px"> <input type ="text" name="subject" id="Subject"style="width: 470px" /><br /></td></tr>
<tr><td> Body</td></tr>
</table>
<textarea rows="15" cols="30" id="body" name="body" style="width: 548px" >
Qualification: <%:Model.Candidate.Qualification %>
Total Experience:<%:Model.Candidate.Experience %>
Company:<%:Model.Candidate.Company.CompanyName %>
Current CTC:<%:Model.Candidate.CurrentCTC %>
Expected CTC:<%:Model.Candidate.ExpectedCTC %>
Notice Period:<%:Model.Candidate.NoticePeriod %>
<%:Model.Recruiter.Signature %>
</textarea>
<%-- <TextArea name="value" id="body" TextMode="MultiLine" Columns="55" Rows="10"/><br /></td></tr>--%>
<input type ="submit" name="Sendmail" id="Send" value="Send"/>
我試着這段代碼它不工作 – sandy