你可以使用.ashx处理这个请求请求格式这样xx.ashx?audioid=dfsfs
你在.ashx文件中的ProcessRequest中写
context..Response.ContentType=fileContentType;
context..Response.AppendHeader("Content-Disposition","attachment;filename=" + theFileName);
context.Response.WriteFile(filename); context.Response.Flush();
context.Response.Close();
context.Response.End();
这样的东西,就是把以前直接请求的文件交给asp.net处理,请求路径就是xxx.ashx?aduio=fsdf这种
.........