我们有这个网站,我们还有一个签证申请模块。签证申请模块需要用户创建一个帐户。每当用户上传附件时,它都会保存在附件内的特定文件夹中。此特定文件夹对应于分配给每个用户的唯一生成的号码。
现在我需要的是,如果用户没有登录,他们应该无法访问附件文件夹中的文件。
如何使用 http 处理程序实现这一点?
我有这个代码
if (HttpContext.Current.Session["UserRegistrationID"] != null)
{
if (HttpContext.Current.Session["UserRegistrationID"].ToString() != "")
{
DownloadFile(context);
}
else
{
context.Response.Write("You don't have the rights to access this file.");
context.Response.Flush();
}
}
else
{
context.Response.Write("You don't have the rights to access this file.");
context.Response.Flush();
}
protected void DownloadFile(HttpContext context)
{
context.Response.ContentType = "image/jpg";
context.Response.WriteFile(context.Request.PhysicalPath);
context.Response.Flush();
}
但问题是我在网络配置中配置它时遇到问题。
有人知道该怎么做吗?