Ramco Ramco

Ramco Ramco

  • 469
  • 2.8k
  • 393.9k

Html Settings on asingle aspx page

Apr 1 2023 1:28 PM

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


Answers (2)