在用 ASP.NET 编程时,打开一个页面一般是通过指定超链接地址,调用指定的页面文件(.html、.aspx)等方法。 但是,如果即将打开的页面文件的内容是在程序中动态生成,或者是从数据库的表里取出的,我们怎么把这些内容展示出来呢? 另一种最好的方法是利用文本格式流,把页面内容动态地展示出来。例如,有一个页面: …… 需要用 iFrame 打开一个页面,这个页面的内容是动态生成的。我们可以写一个 .ashx 文件(这里命名为 html.ashx)来处理。.ashx 文件里实现了 IHttpHandler 接口类,可以直接生成浏览器使用的数据格式。 html.ashx 文件内容: <%@ WebHandler Language=”C#” Class=”Handler” %> using System; public class Handler : IHttpHandler { public bool IsReusable { public void ProcessRequest (HttpContext context) Stream stream = null; string html = “<html><body>成功: test of txt.ashx</body></html>”; stream = new MemoryStream(html2bytes); if (stream == null) //Write text stream to the response stream } html.ashx 文件中首先把 string 字符串转化为字节(byte)数组,然后再生成内存中的 MemoryStream 数据流,最后写到 OutputStream 对象中,显示出来。 这样以来,我们就可以通过 <iFrame src=”http://www.knowsky.com/html.ashx”></iframe> 来展示动态生成的页面,显示“成功: test of txt.ashx”的网页内容。html.ashx 文件中 string html = “<html><body>成功: test of txt.ashx</body></html>”; 一句中,变量 html 的内容完全可以从数据库中得到(事先把一个 html 文件内容保存在数据库中)。 作者: 张庆 (http://www.why100000.com)
我们最直接的想法是,把这些内容先保存成网页文件,再调用它。这种方法当然是可以的,但不是最好的方法,因为这样会在 Web 服务器上生成
许多临时文件,这些文件可能永远也用不着了。
<iFrame src=”http://www.knowsky.com/”></iframe>
……
using System.IO;
using System.Web;
get {
return true;
}
}
{
// Set up the response settings
context.Response.ContentType = “text/html”;
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.BufferOutput = false;
byte[] html2bytes = System.Text.Encoding.ASCII.GetBytes(html);
stream = new MemoryStream(System.Text.Encoding.ASCII.GetBytes(“<html><body>get Nothing!</body></html>”));
const int buffersize = 1024 * 16;
byte[] buffer = new byte[buffersize];
int count = stream.Read(buffer, 0, buffersize);
while (count > 0)
{
context.Response.OutputStream.Write(buffer, 0, count);
count = stream.Read(buffer, 0, buffersize);
}
}
asp.net 2.0 里输出文本格式流_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp.net 2.0 里输出文本格式流_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧