html - how do i put the header static in aspx page without having css? because it always goes to bottom. -
<tr> <td class="table-header2"<width="200">doctor name</td> <td class="table-header2" <width="35">segment</td> <td class="table-header2"><width="35">jan</td> <td class="table-header2"><width="35">feb</td> <td class="table-header2"><width="35">mar</td> <td class="table-header2"><width="35">apr</td> <td class="table-header2"><width="35">may</td> <td class="table-header2"><width="35">jun</td> <td class="table-header2"><width="35">jul</td> <td class="table-header2"><width="35">aug</td> <td class="table-header2"><width="35">sep</td> <td class="table-header2"><width="35">oct</td> <td class="table-header2"><width="35">nov</td> <td class="table-header2"><width="35">dec</td> </tr>
i tried code. "doctor name","segment","jan",..... appears @ bottom. can know why? in advance.
there go, fixed:
<div class="pull-left"> <div class="content-frame-bottom white type4" id="divfrequency" style="overflow:auto" runat="server"></div> <table id ="frmain" width="100%" class="table table-bordered table-condensed"> <tr> <td class="table-header2" width="200">doctor name</td> <td class="table-header2" width="35">segment</td> <td class="table-header2" width="35">jan</td> <td class="table-header2" width="35">feb</td> <td class="table-header2" width="35">mar</td> <td class="table-header2" width="35">apr</td> <td class="table-header2" width="35">may</td> <td class="table-header2" width="35">jun</td> <td class="table-header2" width="35">jul</td> <td class="table-header2" width="35">aug</td> <td class="table-header2" width="35">sep</td> <td class="table-header2" width="35">oct</td> <td class="table-header2" width="35">nov</td> <td class="table-header2" width="35">dec</td> </tr> </table>
Comments
Post a Comment