I'm trying to give styling to the drop-down list control in asp.net using bootstrap. The styling is getting applied to some files but for the others, its not. I really need some help.
The .aspx file is as follows:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="view_cse_PlacementAttendance.aspx.cs" Inherits="DQ_DataQuest.PlacementCoordinator.CSE.view_cse_PlacementAttendance" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>View Attendance</title>
<!--the drop down style-->
<script type="text/javascript" src="../Scripts/jquery-2.1.3.js"></script>
<script type="text/javascript" src="../Scripts/bootstrap-3.3.4/dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src=" ...
Go to the complete details ...