这是我的用户控件的代码。
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="NewUserControl.ascx.cs"
Inherits="usercontrol.NewUserControl" %>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:LinkButton ID="LinkButton1" runat="server" onclick="LinkButton1_Click">LinkButton1</asp:LinkButton>
并且在按钮点击事件的另一个表单上,我正在输入用户控件。像这样 -
protected void LoadControl_Click(object sender, EventArgs e)
{
newuc = LoadControl("NewUserControl.ascx") as NewUserControl;
form1.Controls.Add(newuc);
Session["chksession"] = ((int)Session["chksession"]) + 1;
if (((int)Session["chksession"]) >= 1)
{
for (int i = 1; i < ((int)Session["chksession"]); i++)
{
newuc = LoadControl("NewUserControl.ascx") as NewUserControl;
form1.Controls.Add(newuc);
}
}
}
现在用户控件可以随时加载,现在我需要点击.aspx页面上的按钮时表单上存在的所有文本框的文本。 我是asp的新手...需要指导。
答案 0 :(得分:0)
为什么不向UserControl添加一个属性,允许您在TextBox1
中获取/设置文本:
public string Text {
get { return TextBox1.Text; }
set { TextBox1.Text = value; }
}
在你的按钮处理程序中像这样访问它:
newuc.Text = "Setting the text";
string myString = newuc.Text; //getting the text
<强>更新强>
由于您正在动态加载UserControl,因此您必须将其值保存在StateBag(ViewState,Session等)中。
public string Text {
get {
//Default to any existing text
string s = TextBox1.Text;
//Use TextBox1.UniqueID to ensure a unique string for the ViewState key
if (TextBox1.Text.Length == 0 & ViewState(TextBox1.UniqueID) != null) {
//TextBox1.Text is empty, restore from ViewState
s = ViewState(TextBox1.UniqueID).ToString;
}
return s;
}
set {
//Set TextBox1.Text
TextBox1.Text = value;
//Store in ViewState as well
ViewState(TextBox1.UniqueID) = TextBox1.Text;
}
}