Hi
I want to set thead , tbody css separate for a particular aspx page only . Below is the code
<table class='table table-bordered table-hover datatable-highlight' id='tbldata'> <thead> <tr> <th>Session Date</th> <th>Session Start Time</th> <th>Session End Time</th> <th>Mentor</th> <th>Student</th> <th>Session Status</th> <th class='text-center nosort' runat="server" id="ActionCtrls">Action</th> </tr> </thead> <tbody> <asp:PlaceHolder ID="PlaceHolderTable" runat="server"></asp:PlaceHolder> </tbody> </table>
Thanks