APNSoft - Web Controls, components for ASP.NET Home Help Center Contact Us
About UsProductsDownloadsPurchase
Support

Include
Version 1.5



What's New
Overview
Features
Reference Book
Licensing
Support



Set Text Property
Include Page from URL




Including the Text directly:

HTML table with text.


  • ASPX

    <inc:APNSoftInclude
    	id=APNSoftInclude1
    	runat="server"
    	Text="<table border=1><tr><td>
    		HTML table with text.
    		</td></tr></table>"
    />
    


  • Code Behind

    using APNSoft.WebControls;
    
    APNSoftInclude APNSoftInclude1 = new APNSoftInclude();
    APNSoftInclude1.Text=
    	"<table border=1><tr><td>"+
    	"HTML table with text."+
    	"</td></tr></table>";
    Response.Write(APNSoftInclude1.Render());
    

You need to set the Text property.


  © 2003-2008 APNSoft. All rights reserved. Table of Contents   Terms of use   Contact Us   Help Center