how to show image in the column of repeater control in asp.net?

前端 未结 3 1920
悲哀的现实
悲哀的现实 2021-01-23 06:26

I\'m using repeater control from asp.net for data binding. And for designing i used the div & span for data representation. I have 4 fields to my table & i want to show

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-23 06:43

    Use this

    
        
            
        
    
    

    Now we need to create a function to retrieve the image using that ID.

    public string GetImage(object ImadeID)
            {
              if(ImageID!=null)
                {
                   //do something with the ImageID to return the image path as string
                }
              else
               {
               return "";
              }
    
            }
    

提交回复
热议问题