テキスト/ xmlファイルを生成し、コンテンツタイプをアプリケーションダウンロードに設定し、クライアントに添付ファイルなどを追加するボタンを作成する方法はありますか側?私が欲しいのは、XMLファイルを保存する私のページの "ダウンロード"ボタンです。IEでボタンを保存してクライアント側にファイルを保存する
response.StatusCode = 200;
response.ContentEncoding = Encoding.UTF32;
response.AddHeader("content-disposition", "attachment; filename=" + fileName);
response.AddHeader("Content-Transfer-Encoding", "binary");
response.AddHeader("Content-Length", response.ContentEncoding.GetByteCount(xmlString).ToString());
response.ContentType = "application-download";
response.Write(xmlString);
をあなたはJavaScriptで意味ですか? –
これはC#でASP.NETと推測していますか? – Carlito
@JanHančičはい、javascript/jquery – Johan