ASP AND ASP+ on the same page?

therealblind

New Member
Can you run ASP And ASP+ on the same page? I believe that asp+ pages need to be named, ".aspx", and also the delimiters are: "<%# ..code %>" compared with ".asp", and "<% ..code %>", and also use different dlls.<BR><BR>If one can be used with another on the same page, what combination is possible, given file extensions, delimiters, etc...?<BR><BR>JohnTHe .aspx extension will identify the page as an ASP+ page and the page will be compiled. This means you are running it as ASP+ only. Of course, much of the ASP DOM carried over, so you can do a lot of the same stuff, and use the ASP Object Model where there are no conflicts.<BR><BR>The short of it all...it is an ASP+ page...not both.<BR><BR>Doug Seven<BR>codejunkies.net / aspnextgen.com<BR>
 
Back
Top