我想改變一些的HtmlTextArea的屬性中,我在C#正在開發一個SharePoint Web部件。 HtmlTextArea被用作一些我正在使用的Sql Server 2005數據的自定義顯示,並且我想更改字體,顏色等,並使其成爲只讀。我看到有幾個方法,如HtmlTextArea.Attributes.Add,HtmlTextArea.Attributes.AddAttributes和HtmlTextArea.Attributes.CssStyle,但我不知道如果這些都是正確的人使用,也不知道如何使用它們。我知道,使用ASP.NET TextArea控件,我可以簡單地使用內聯CSS,所以我試圖找出一種方法來在C#中設置內聯CSS。ASP.NET HtmlTextArea屬性和換行符
另外,我想找出一種方法來添加一個換行符在控件之間,只是在放置輔助。我已經在CreateChildControls中列出了所有的控件,但我沒有看到如何控制它們的位置。舉例來說,我有這樣的:
protected override void CreateChildControls() { customers = new DropDownList(); customers.ID = "customers"; Controls.Add(customers); machines = new DropDownList(); machines.ID = "machines"; Controls.Add(machines); specsOutput = new HtmlTextArea(); specsOutput.ID = "specsOutput"; Controls.Add(specsOutput); }
我想對於要顯示的DDL下面的HtmlTextArea。感謝大家的幫助。
完美!非常感謝。 – 2010-02-02 15:06:15