我使用<asp:FileUpload />上传文件(图像),在代码背后使用UploadedFile.SaveAs("C://Path...")将图像保存在服务器上。
这是我的完整代码:
protected void btnAddImage_OnClick(object sender, ImageClickEventArgs e)
{
//_fuImage is the ID of the <asp:FileUpload />
_fuImage.SaveAs(Server.MapPath(fullPath));
}
问题是它似乎降低了质量。