Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
What can be done is to create a server control. These are simple .NET classes that inherit from WebControl or Page. You can't use an aspx or ascx with these to store your mark-up, you'll instead have to build the control tree completely from code.
To make use of such server controls, you (in case of webcontrols) add them to the toolbox and drag them on your page. or in case of Page controls, you inhertit your aspx page from them. so replace public class MyPage : Page {} with public class MyPage : MyBasePage {}