I doubt it. Because Classic ASP used a sort of "fill-in-the-blank"
technique, while ASP.NET is entirely object-oriented, the only way that any
utility really could convert them would be to take the static HTML, CSS, and
JavaScript and place it in the *.aspx file, and then replace all the dynamic
parts of the Classic ASP with a Literal control, and then add some code in
the Load event that does what the code in the Classic ASP did. But even if
there was a utility that did this, it would be ugly and inefficient code. If
you want to convert a Classic ASP site to an ASP.NET site, I would suggest
pretty much starting from scratch. Since there are many controls in ASP.NET
that simplify or combine some of the steps that are done individually in
Classic ASP, as well as generate much of the HTML, I would also suggest
trying to avoid looking at the source code from your Classic ASP as much as
possible. And don't forget that in some cases (not all, it depends on the
exact scenario and design) it can be a good idea to use server controls
instead of HTML controls just because it simplifies your code in some cases.
Well, I guess I've said pretty much all the basics, so good luck!