using APNSoft.WebControls; APNSoftInclude APNSoftInclude1 = new APNSoftInclude(); APNSoftInclude1.IncludeFileURL = "http://www.yahoo.com"; Response.Write(APNSoftInclude1.Render());
using APNSoft.WebControls; APNSoftInclude APNSoftInclude1 = new APNSoftInclude(); APNSoftInclude1.IncludeFileURL = "http://www.yahoo.com"; //5 seconds timeout APNSoftInclude1.RequestURLTimeout = 5000; Response.Write(APNSoftInclude1.Render());
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());
using APNSoft.WebControls; APNSoftInclude APNSoftInclude1 = new APNSoftInclude(); APNSoftInclude1.AddTextFromURL("http://www.yahoo.com"); Response.Write(APNSoftInclude1.Render());