1. Я пытаюсь отправить ссылку на путь к загруженному файлу с помощью ответа, но она отправляется в виде строки, а не гиперссылки.2. Код ниже.
string pathh = @"../../uploads";
var httpPostedFile = HttpContext.Current.Request.Files["Uploads"];
if (httpPostedFile != null)
{
var filename = httpPostedFile.FileName;
var fileSavePath =
Path.Combine(HttpContext.Current.Server.MapPath("~/uploads"), filename);
var retpath = fileSavePath;
httpPostedFile.SaveAs(fileSavePath);
string newPath = Path.GetFullPath(pathh);
newPath = Path.Combine(newPath, filename);
Response.Write("<a href='newPath'>click here</a> ");