User839733648 posted
Hi JagjitSingh,
You could add a overflow style and set the width in a div to add the horizontal scrallbar like below.
<div class="row">
<div class="col-lg-12 ">
<div class="table-responsive">
<div style="overflow-x: scroll; width: 150px;">
<asp:GridView ID="gvwEmployee" runat="server" CssClass="table table-bordered table-striped" AutoGenerateColumns="false"
ClientIDMode="Static" EmptyDataText="No Records Found!" EmptyDataRowStyle-ForeColor="Red" EmptyDataRowStyle-CssClass="gvEmpty">
........
</asp:GridView>
</div>
</div>
</div>
</div>
result:

Best Regards,
Jenifer