include file in ASP.NET

  • Thread starter Thread starter Grey
  • Start date Start date
G

Grey

Dear all

I need to include some predefined file in ASP.NET like ASP. The statement for file include is "<!-- #INCLUDE FILE="ABC.ASP" -->" in ASP, but what is it in ASP.NET??
 
The most common replacement for old fashioned include files are web user controls.
They basically are like object oriented include files on steroids.

Here's more info:
http://msdn.microsoft.com/library/d...n/html/vbconintroductiontowebusercontrols.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vboriwebusercontrols.asp
http://msdn.microsoft.com/library/d...l/vbconWebUserControlsVsCustomWebControls.asp

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
Hire top-notch developers at http://www.able-consulting.com



Dear all

I need to include some predefined file in ASP.NET like ASP. The statement for file include is "<!-- #INCLUDE FILE="ABC.ASP" -->" in ASP, but what is it in ASP.NET??
 
Back
Top