Yes I'm fully aware of usercontrols and normally I create custom servercontrols.
The problem is that I'm writing a c# addon to an exisiting site written in asp.
They want the current look and feel and only have limited knowledge of programming. They would like to make changes to the ASP include files and then the new sections that I'm writing would also use that same include.
The include works, but the asp code fails as its trying to be parsed by the ASP.NET Engine.
Any suggestions?
Main Topics
Browse All Topics





by: mmarinovPosted on 2004-02-27 at 05:27:56ID: 10468936
you can use them but in ASP.NET there are User controls ( .ascx files ) that are the equivalent of the include directive in the pure asp. The goal is that you can write a code behind for every user control and you can write the html in old way ( like in the include files )
B..G