zimcoder Level: VB Lord

 Registered: 27-10-2003 Posts: 225
|
Re: how to attach style sheet dynamically to any server control in asp.net ?
It is very easy to associate a style sheet with a server control in asp.net.
If for instance i have a datagrid i can associate it to a cascading style sheet class this
//declare the datagrid
DataGrid MyDataGrid = new DataGrid()
//associate the datagrid to a class in your style sheet
MyDataGrid.CssClass = "grids"
Make sure you have the appropriate reference to the style sheet in your page via <style> tags or any othe way of including style sheets.
____________________________
BrainBench ADO.NET and ASP.NET Certified Developer
 
|