views:

67

answers:

1

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.

+2  A: 

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

John Saunders
Thanks for that. WHY are they turned off?
Yar
In addition to not being necessary, I seem to remember they were a security concern. I don't remember why - it's been 5 years since I've had to deal with them.
John Saunders