Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要检索从 iphone 应用程序发送到我的 asp.net 应用程序的文本文件。
HttpContext context = HttpContext.Current; NameValueCollection nvc = context.Request.Form; string file = nvc["text_file"];
可能吗 ??请帮助。我已使用此代码检索单个变量。,它工作正常..但在文本文件的情况下是可能的???
这将取决于此 iPhone 应用程序如何发送文件。无论是使用multipart/form-data允许您从context.Request.Files["text_file"]属性 (NOT context.Request.Form) 中按名称检索它的内容类型,还是它只是将文件内容直接写入请求有效负载中,在这种情况下您可以从context.Request.InputStream.
multipart/form-data
context.Request.Files["text_file"]
context.Request.Form
context.Request.InputStream