怎样获取前一个页面的dropdownlist的Text?
DropDownListDropDownList3=newDropDownList();DropDownList3=(DropDownList)Page.Previous...
DropDownList DropDownList3 = new DropDownList();
DropDownList3 = (DropDownList)Page.PreviousPage.FindControl("DropDownList2");
string selectedEvent = DropDownList3.SelectedItem.Text.Trim();
我用上面的语句,老是提示:未将对象引用设置到对象的实例。 FindControl “System.Web.UI.Page.FindControl(string)”是一个“方法”,这在给定的上下文中无效
请注意,我说的是获取 另外一个页面 的dropdownlist的Text!!!
我在Values 里引用的时候直接写 '"+((DropDownList)this.PreviousPage.FindControl("DropDownListDJBZ")).Text.ToString()+"' 能行吗? 展开
DropDownList3 = (DropDownList)Page.PreviousPage.FindControl("DropDownList2");
string selectedEvent = DropDownList3.SelectedItem.Text.Trim();
我用上面的语句,老是提示:未将对象引用设置到对象的实例。 FindControl “System.Web.UI.Page.FindControl(string)”是一个“方法”,这在给定的上下文中无效
请注意,我说的是获取 另外一个页面 的dropdownlist的Text!!!
我在Values 里引用的时候直接写 '"+((DropDownList)this.PreviousPage.FindControl("DropDownListDJBZ")).Text.ToString()+"' 能行吗? 展开
展开全部
获取前一个页面的值。。
只能从前一个页面传参过来吧
其他方法好像没有吧 也许也有不过我不知道~
从前面的页面传个queryString 不是很方便么
只能从前一个页面传参过来吧
其他方法好像没有吧 也许也有不过我不知道~
从前面的页面传个queryString 不是很方便么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你在另一个页面定义一个属性,其他页面就能直接用属性了
public string TextValue
{
get
{
DropDownListDJBZ.SelectedItem.Text.Trim();
}
}
public string TextValue
{
get
{
DropDownListDJBZ.SelectedItem.Text.Trim();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以直接DropDownList2.SelectedItem.Text啊,还要FindControl干嘛呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询