2011-07-12 86 views
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"/> 

回答

-1

你可以試試下面的代碼:

<textarea rows="15" cols="30" id="body" name="body" style="width: 548px; text-align:left;" /> 
+0

我試着這段代碼它不工作 – sandy

0

我用使用CSS來對準我的textarea。它工作正常。

在您的視圖中,您可以調用您的css文件。

<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> 

然後設計你的textarea。

textarea#body 
{ 
    width: 750px; 
    height: 300px; 
    text-align: left; 
}