0

I have a tiny job to perform on an HTML/ASPX site, and I don't have time to muck around with ASCX (though I've done it before quite a bit, and it is a wonderful technology). My question is: are "classic" ASP server-side includes deprecated in ASP.NET, or merely not recommended?

Will they work on Mono?

Edit: Yes I have seen this question.

Community
  • 1
  • 1
Dan Rosenstark
  • 68,471
  • 58
  • 283
  • 421
  • I'd strongly recommend against using them, even for a very small project. Familiarize yourself with the new way to do things, and it won't be any slower than using includes. – Thorarin Jul 25 '09 at 17:01

1 Answers1

2

Server-side includes are unnecessary, and are usually turned off on production IIS sites. Don't use them.

John Saunders
  • 160,644
  • 26
  • 247
  • 397