Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
Hello all

I want to Display image list item of radiobuttonlist for this i have done this code

ds = objque.GetImageQuestion(ref errMsg);//Bind the dataset
           foreach (DataRow dr in ds.Tables[0].Rows)
           {
               ListItem li = new ListItem();

               li.Text = "<img src=" + dr["Answers"].ToString() + " alt=\"\" />";

               li.Value = dr[0].ToString();

               rdblans.Items.Add(li);
           }
           rdblans.DataBind();


But Image is not displayed.
Posted
Comments
Umashankar Yadav 17-Nov-12 0:23am    
Please Help.
sahabiswarup 17-Nov-12 1:55am    
good question; waiting to hear the solution.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900