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.
我正在使用一个页面,您可以在其中提交照片并发送电子邮件以供其批准。但即使我不添加新图像,它也会发送电子邮件。是否可以在 C# 中使用会话获取图像名称。
对不起这个愚蠢的问题。我是 ASP.NET 的新手。
提前致谢
除非您明确将图像名称存储在会话中(我不建议这样做),否则图像名称不会存储在会话中。您应该在 Request.Form 或 Request.QueryString 中查找图像名称。 本文有一些很好的代码示例。