string Paths = Server.MapPath("~") + "\\StudentImage\\" + FuImage.FileName;
    FuImage.SaveAs(Paths);
    ...
    student._St_Image = Paths;
    这么写,上传后数据库里保存的是:   D:\系统\新建文件夹\源文件\Training\Web\StudentImage\112.JPG
    我想要的路径是:     ~\StudentImage\112.JPG
        string Paths = Server.MapPath("~") + "\\StudentImage\\" + FuImage.FileName;
    FuImage.SaveAs(Paths);  (StudentImage是文件夹名)
    这段代买该怎么改,或是其他该怎么改