PostBackUrl を使用して、コントロールを「firstwebpage.aspx」から「secondwebpage.aspx」にポストし、構成ファイルを生成できるようにしています。
secondwebpage.aspx でPreviousPage.FindControl("myControlId")メソッドを使用して "firstwebpage.aspx" からコントロールを取得し、データを取得して機能させることができることを理解しています。
ただし、このメソッドは、firstwebpage.aspx のテーブルに入力するときに、実行時にプログラムで生成したコントロールでは機能しないようです。
私もこの関数を使ってみましたResponse.Write("--" + Request["TextBox1"].ToString() + "--"); このステートメントは TextBox1 のテキスト フィールドのテキストを出力しますが、textbox1 の文字列値しか返されません。次の形式でもテキストボックスコントロールにキャストできません
TextBox temptextBox = (TextBox)Request["TextBox1"];
私の質問は、「secondwebpage.aspx」の「firstwebpage.aspx」でプログラムで生成したコントロールに実際にアクセスするにはどうすればよいですか?
ご意見をお聞かせください!どうもありがとう!
//aspx のパネルとボタン
<asp:Panel ID="Panel2" runat="server"></asp:Panel>
<asp:Button ID="Button1" runat="server" Text="Generate Xml" PostBackUrl="~/WebForm2.aspx" onclick="Button1_Click" />
//これは、パネルに行を挿入する関数です
public void createfilerow(string b, string path, bool x86check, bool x86enable, bool x64check, bool x64enable)
{
Label blank4 = new Label();
blank4.ID = "blank4";
blank4.Text = "";
Panel2.Controls.Add(blank4);
CheckBox c = new CheckBox();
c.Text = b.Replace(path, "");
c.Checked = true;
c.ID = "1a";
Panel2.Controls.Add(c);
CheckBox d = new CheckBox();
d.Checked = x86check;
d.Enabled = x86enable;
d.ID = "1b";
Panel2.Controls.Add(d);
CheckBox e = new CheckBox();
e.Checked = x64check;
e.Enabled = x64enable;
e.ID = "1c";
Panel2.Controls.Add(e);
}
//my virtual path in WebForm2.aspx
<%@ PreviousPageType VirtualPath="~/WebForm1.aspx" %>
//私のページロードハンドラ
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
CheckBox tempCheckbox = (CheckBox)Page.PreviousPage.FindControl("1a");
Button1.Text = tempCheckbox.Text;
}
}
//クリック時にパネルに入力するハンドラ
protected void Button7_Click(object sender, EventArgs e)
{
//get foldername
if (!Directory.Exists(@"myfilepath" + TextBox2.Text))
{
//folder does not exist
//do required actions
return;
}
string[] x86files = null;
string[] x64files = null;
string[] x86filespath = null;
string[] x64filespath = null;
ArrayList common = new ArrayList();
if (Directory.Exists(@"myfilepath" + TextBox2.Text + "\\x86"))
x86files = Directory.GetFileSystemEntries("myfilepath" + TextBox2.Text + "\\x86");
if (Directory.Exists(@"myfilepath" + TextBox2.Text + "\\x64"))
x64files = Directory.GetFileSystemEntries("myfilepath" + TextBox2.Text + "\\x64");
//some codes to convert x64files and x86files to string[]
//The header for Panel, 4 column
Label FL = new Label();
FL.ID = "flavourid";
FL.Text = "Flavour";
Panel2.Controls.Add(FL);
Label filetext = new Label();
filetext.ID = "filenamelabel";
filetext.Text = "File(s)";
Panel2.Controls.Add(filetext);
Label label86 = new Label();
label86.ID = "label86";
label86.Text = "x86";
Panel2.Controls.Add(label86);
Label label64 = new Label();
label64.ID = "label64";
label64.Text = "x64";
Panel2.Controls.Add(label64);
//a for loop determine number of times codes have to be run
for (int a = 0; a < num; a++)
{
ArrayList location = new ArrayList();
if (//this iteration had to be run)
{
string path = null;
switch (//id of this iteration)
{
case id:
path = some network address
}
//check the current version of iternation
string version = //version type;
//get the platform of the version
string platform = //platform
if (curent version = certain type)
{
//do what is required.
//build a list
}
else
{
//normal routine
//do what is required
//build a list
}
//populating the panel with data from list
createflavourheader(a);
//create dynamic checkboxes according to the list
foreach(string s in list)
//createrow parameter is by version type and platform
createfilerow(readin, path, true, true, false, false);
}
}
}
form1.Controls.Add(Panel2);
}
申し訳ありませんが、コードが長いため完全なコードをお見せすることはできません。