ตอนนี้ประสบปัญหาเรื่องลบไฟล์ครับ ค้นจาก Google ก็เจอคำสั่งเดียวคือ ลบไฟล์รูป
Dim filepath As String = Server.MapPath("imgProduct")
Dim file As FileInfo
file = New FileInfo(filepath & "\picture.jpg")
file.Delete()
ที่เจอมา แล้วใช้มา ก็เป็นโค๊ตแบบนี้มาตลอด
จน ณ บัดนี้ เพิ่งเจอเหตุการณ์ไม่คาดฝัน
เว็บโดนยิงไฟล์ index.htm, index.html, ..., default.php ประมาณนี้
ทำให้เจ้าของโฮส ต้องกู้ข้อมูลคืน
ไฟล์ที่ถูกกู้มา ไม่สามารถลบโดยใช้คำสั่งข้างต้นได้
เมื่อลบแล้วจะขึ้น Error ดังนี้ Access to the path 'xxxxxxx (File path) xxxxxxx' is denied.
จากนั้นได้ลองทำตามที่ Debug แจ้ง
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user