如何解决我的上传文件问题

How to resolve my problem with upload file

如何在 asp.net 核心 2 中上传我的图像而不保存到数据库,然后将其显示在其他视图中?请帮忙。

基本上你可以这样做,:

  1. Upload your image to a folder, not a database. Check
  2. Save the url of the image to database, basically it is not different from anything saving at database.
  3. Give the url that you saved as source in your view.

对于每个步骤,您都可以在互联网上找到足够的示例。