jquery ajax:将文件上传到 C# 处理程序
我想知道是否可以将文件发送到 C# 中的通用处理程序,并生成某种响应。例如:将 .txt 文件发布到处理程序。处理程序检查是否提交了文本文件,然后将其转换为 json 作为响应。希望你能明白。谢谢
I want to know if its possible to send a file to a generic handler in c#, and generate some kind of response. For example: post a .txt file to the handler. The handler check if a textfile is submitted and then converts it to json as response. Hope you get the idea. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以这样编写处理程序:
对于
Request.Files
内容,请阅读 Scott Hanselman 的这篇文章You can write your handler like this:
for
Request.Files
stuff read Scott Hanselman's this post您似乎正在谈论创建网络服务。本教程可能是一个很好的起点: http://www.dotnetperls.com/ashx
基本思想您将在 .ashx 文件中创建处理程序函数,通过 HTTP POST 请求向其传递文件信息(文本文件),然后将所需的任何 JSON 写入响应对象。
It looks like you're talking about creating a web service. This tutorial might be a good starting point: http://www.dotnetperls.com/ashx
The basic idea is that you'll create your handler function within a .ashx file, pass it your file information (textfile) via an HTTP POST request, and then write whatever JSON you want to the response object.