asp.net问题中的Repeater问题。。。
发布网友
发布时间:2024-09-27 08:53
我来回答
共2个回答
热心网友
时间:2024-10-18 20:51
for(var i = 0; i < Repeater1.Items.Count;i++){
TextBox tb = RepPicbar.Items[i].FindControl("TextBox1") as TextBox;
if(tb!=null){
//tb.Text;
}
}
热心网友
时间:2024-10-18 20:52
后台?
for(int i=0; i< Repeater1.Items.Count; i++)
{
TextBox text= Repeater1.Items[i].FindControl("TextBox1") as TextBox;
if(text.Text !=" ")
{
string str1=text.Text;//也可直接使用,不用string类型接收
}
}
热心网友
时间:2024-10-18 20:51
for(var i = 0; i < Repeater1.Items.Count;i++){
TextBox tb = RepPicbar.Items[i].FindControl("TextBox1") as TextBox;
if(tb!=null){
//tb.Text;
}
}
热心网友
时间:2024-10-18 20:52
后台?
for(int i=0; i< Repeater1.Items.Count; i++)
{
TextBox text= Repeater1.Items[i].FindControl("TextBox1") as TextBox;
if(text.Text !=" ")
{
string str1=text.Text;//也可直接使用,不用string类型接收
}
}