|
-
December 7th, 2012, 06:41 PM
#1
can't add images to GridView
Hello,
I have a DataGrid web control on my ASPX page. It has a column (titled "Active") that set to ImageField.
DataGrid.png
In my code, I'm trying to set the content the cells in this column to an image. It's not working. I'm doing this:
Code:
System.Web.UI.WebControls.Image checkMarkImage = new System.Web.UI.WebControls.Image();
checkMarkImage.ImageUrl = "C:\\CoreDataProject\\MAIN\\src\\ProjectApp\\ProjectApp\\images\\checkmark.gif";
...
DataTable myTable = new DataTable();
...
myTable.Columns.Add("Active", typeof(System.Web.UI.WebControl.Image));
...
DataRow row = myTable.NewRow();
...
row["Active"] = checkMarkImage;
myTable.Rows.Add(row);
...
UserGrid.DataSource = myTable; // UserGrid is the asp:GridView
UserGrid.DataBind();
Nothing shows up under the Active column.
Can anyone see what I'm doing wrong?
-
December 7th, 2012, 10:20 PM
#2
Re: can't add images to GridView
Best Regards,
BioPhysEngr
http://blog.biophysengr.net
--
All advice is offered in good faith only. You are ultimately responsible for effects of your programs and the integrity of the machines they run on.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|