gpt4 book ai didi

c# - 通过 queryString 上传文件/保存,无需文件上传控件

转载 作者:行者123 更新时间:2023-11-30 17:34:00 25 4
gpt4 key购买 nike

<分区>

在不使用文件上传的情况下上传/保存文件夹中的文件控制文件路径通过查询字符串发送,如下所示

JS代码

var xmlHttp1 = new XMLHttpRequest();
var URL = "../codePages/codePage1.aspx?imgName=http://maps.googleapis.com/maps/api/staticmap?center=34.08326024943277,74.79841209948063&zoom=21&size=550x450&maptype=roadmap&sensor=true";
xmlHttp1.open("POST", URL, true);
xmlHttp1.send();
xmlHttp1.onreadystatechange = function () {
if (xmlHttp1.readyState == 4 && xmlHttp1.status == 200) {
}
}

C#代码

string fileName = Path.GetFileName(Request.QueryString["imgName"].ToString());
string location = Server.MapPath("~/saveImages/") + fileName;
Request.Files[0].SaveAs(location);

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com