Currently, I have an application that consists of only one aspx page called Default.aspx. This page dynamically loads .ascx controls as required, all of which utilize the same JS and CSS file. I am now considering implementing Bootstrap on specific controls, but I am concerned that doing so may interfere with the existing CSS and JS. One idea I have is to enclose each control within an Iframe, as I have read that Iframes can prevent the inheritance of CSS and JS. However, I am uncertain if this is the best solution. Is there a way to identify the specific CSS and JS required by each control before proceeding with the implementation of Bootstrap?
Thank you for any guidance you can provide.