判断多个radio是否选中,,下一个页面 多个panel根据 radio选中状态是否显示
判断多个radio是否选中,,下一个页面多个panel根据radio选中状态是否显示radio传值的页面代码:Button1_Clickint[]Radio=newint...
判断多个radio是否选中,,下一个页面 多个panel根据 radio选中状态是否显示
radio传值的 页面代码:
Button1_Click
int[] Radio = new int[110];
……
int a = Radio.Length;
Session["Radio"] = Radio;
第2个页面的 Page_Load:
int[] Radio = (int[])Session["Radio"];
int a = Radio.Length;
int b = Page.Controls.Count;
for (int i = 0; i < b; i++) {
foreach (Control cl in Page.Controls[i].Controls) {
if (cl.GetType() == typeof(System.Web.UI.WebControls.Panel))
{
//Response.Write("<script>alert(" + cl.ID + ")</script>");
int n = Convert.ToInt32(cl.ID.Substring( 5 , cl.ID.Length));
int n = Convert.ToInt32(cl.ID.Length);
if (n % 2 == 0)
{
if (Radio[n] == 1 && Radio[n + 1] == 1 || Radio[n + 1] == 2) {
cl.Visible = true;
}
else {
cl.Visible = false;
}
}
else
{
if (Radio[n - 1] == 1 && Radio[n] == 1 || Radio[n] == 2) {
cl.Visible = true;
}
else {
cl.Visible = false;
}
}
}
}
}
int n = Convert.ToInt32(cl.ID.Substring( 5 , cl.ID.Length));这行
提示错误..length 索引和长度必须引用该字符串内的位置
还有cl.ID 打印不出来任何值..
是吧是 取值有 问题呀 。。 展开
radio传值的 页面代码:
Button1_Click
int[] Radio = new int[110];
……
int a = Radio.Length;
Session["Radio"] = Radio;
第2个页面的 Page_Load:
int[] Radio = (int[])Session["Radio"];
int a = Radio.Length;
int b = Page.Controls.Count;
for (int i = 0; i < b; i++) {
foreach (Control cl in Page.Controls[i].Controls) {
if (cl.GetType() == typeof(System.Web.UI.WebControls.Panel))
{
//Response.Write("<script>alert(" + cl.ID + ")</script>");
int n = Convert.ToInt32(cl.ID.Substring( 5 , cl.ID.Length));
int n = Convert.ToInt32(cl.ID.Length);
if (n % 2 == 0)
{
if (Radio[n] == 1 && Radio[n + 1] == 1 || Radio[n + 1] == 2) {
cl.Visible = true;
}
else {
cl.Visible = false;
}
}
else
{
if (Radio[n - 1] == 1 && Radio[n] == 1 || Radio[n] == 2) {
cl.Visible = true;
}
else {
cl.Visible = false;
}
}
}
}
}
int n = Convert.ToInt32(cl.ID.Substring( 5 , cl.ID.Length));这行
提示错误..length 索引和长度必须引用该字符串内的位置
还有cl.ID 打印不出来任何值..
是吧是 取值有 问题呀 。。 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询