を内のファイル:編集.BATはすべての私のコードの最初の、まあC#
protected void Button2_Click1(object sender, EventArgs e)
{
string batname = edit.SelectedValue;
StreamWriter sw = new StreamWriter("D:\\MPSite-Serv\\bats\\" + batname);
string theedit = batedit.Text;
sw.WriteLine(theedit);
sw.Flush();
}
私はbutton2
をクリックするとbatファイルにテキストのすべてを書いてみる、
私はこの結果
バットを取得しますファイルには以下が含まれます:
System.Web.UI.WebControls.TextBox
なぜですか?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
using System.Diagnostics;
あなたは「このRESUを取得するとはどういう意味ですかlt "?あなたはその価値をどこから得るのですか? '編集'とは何ですか? –
が.batにあり、「編集」を押すと表示されます。 –
は 'batedit'テキストボックスですか? – zsalzbank