Reputation: 69757
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.
Upvotes: 0
Views: 367
Reputation: 161773
Server-side includes are unnecessary, and are usually turned off on production IIS sites. Don't use them.
Upvotes: 2