我想直接呈现文件的内容,但是有错误,报无法连接到CSShttp://css/dynamic.aspx?log=2012-07-24.log<%
if (Request.Params["log"] != null)
{
        string file_path= file_path = HttpContext.Current.Server.MapPath("~/TempImages/web_log/" + Request.Params["log"]); System.IO.StreamReader sr = new System.IO.StreamReader(file_path); Response.Write(@"<br/><textarea style='width:100%;height:95%;' readonly='readonly'>" + sr.ReadToEnd() + "</textarea>"); sr.Close();
}
%>请问有什么调试的方法