zoukankan      html  css  js  c++  java
  • 母版页里面查找Repeater内控件,并构造URL

      protected void Page_Load(object sender, EventArgs e)
        {
            Repeater rp 
    = (Repeater)Page.Master.FindControl("Repeater1");//找出Repeater控件出来是第一步
            rp.DataSource = dhdat; //如果是让前面页他自己绑定的话,下面就读不出来项数了,       
            rp.DataBind();//所以这里是很重要的
            
            
    int coun = rp.Items.Count;//得到Repeater的项数
            for (int i = 0; i < coun; i++)//循环所有项
            {
                HyperLink diqu 
    = (HyperLink)rp.Items[i].FindControl("HyperLink1");
                
    //找到HyperLink1这个控件,也就是我们要做导航的字
                string aid = ((Label)rp.Items[i].FindControl("Label1")).Text.ToString() ;
                
    //因为Repeater没有主键,至少我不知道,所以就多放一个Label存放ID,这里再出来
                string url="list.aspx?aid=" + aid + "";
                
    //因为这个URL会有多个条件,所以在这里构造URL
                if (Request.QueryString["aid"== null)
                {
                    diqu.NavigateUrl 
    = url;
                }
                
    //.具体那些判断,看也没意思,略了
            }
           

           
        }
  • 相关阅读:
    cocos2d-x Tests讲解 Particle System(粒子系统)
    c++ 知识点
    详解C/C++函数指针声明
    VS中的路径宏 vc++中OutDir、ProjectDir、SolutionDir各种路径
    cocos2d-x学习知识点记录
    Ogre实现简单地形
    Ogre内部渲染流程分析系列
    gcc/g++编译
    gcc和g++的区别
    Hack with rewrite
  • 原文地址:https://www.cnblogs.com/jiangyuxuan/p/843242.html
Copyright © 2011-2022 走看看