我的控件的RenderContents方法中有以下c#代碼。我如何添加外部CSS文件中的樣式/類?如何在.net中動態添加CSS樣式/類到HtmlTextWriterTag.Td?
output.AddAttribute(HtmlTextWriterAttribute.Border, "0");
output.AddAttribute(HtmlTextWriterAttribute.Width, "100%");
output.RenderBeginTag(HtmlTextWriterTag.Table);
output.RenderBeginTag(HtmlTextWriterTag.Tbody);
output.RenderBeginTag(HtmlTextWriterTag.Tr);
//Here -> Need to add some style from external stylesheet.css file
output.RenderBeginTag(HtmlTextWriterTag.Td);
rblLoadSelection.RenderControl(output);
output.RenderEndTag(); //Td
output.RenderEndTag(); //Tr
output.RenderEndTag(); //Tbody
output.RenderEndTag(); //Table
我想他想添加一個樣式,或類屬性的TD元素,而不是一個樣式表(我認爲)的鏈接。 – CodingGorilla 2011-03-04 18:10:03
是的,我只需要爲TD添加一個樣式/類。對不起,不清楚。 – 2011-03-04 19:06:34