所以,基本上我有一个简单的asp.net页面" Default.aspx"它有一个名为" txt"和按钮" adjust_btn
"的文本框;和一个链接到" preview.aspx"的iFrame;它有" label1"在标题中。
以下是我对Default.aspx的代码:
<p>
<asp:Button ID="preview_btn" runat="server" Text="Preview" Width="110px" OnClick="preview_btn_Click" />
<asp:TextBox ID="txt" runat="server" Width="200px" Height="25px"></asp:TextBox>
</p>
这里是我的代码&#34; Preview.aspx&#34;:
<h1> <asp:Label ID="Label1" runat="server" Text="Label1"></asp:Label> </h1>
这是我点击按钮的代码:
protected void preview_btn_Click(object sender, EventArgs e)
{
iframe.Visible= true;
// here i want something that does this iframe.label1 = textbox1.Text;
// so the label1 is in iframe and the textbox1 is in the main page..
}
感谢你的帮助,团队!