|
|
|
[ASP, HTML]อยากทราบวิธีดักหรือให้แสดง alert ตอนกด link download แล้วไม่พบไฟล์ |
|
|
|
|
|
|
|
คุณจะต้องตรวจสอบตั้งแต่การสร้าง Link ครับ โดยเขียนตรวจสอบ URL ของไฟลก่อนครับ
Code (C#)
using System;
using System.IO;
class Test
{
public static void Main()
{
string targetFile = Server.MapPath("file/data.pdf")
if (File.Exists(targetFile))
{
this.Download.NavigateURL = "file/data.pdf";
this.Download.Text = "Download";
}
else
{
this.Download.Text = "Not Found file";
}
}
}
|
|
|
|
|
Date :
2012-05-03 06:33:50 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|