Rank: Member Groups: Member
Joined: 11/19/2007 Posts: 25
|
Hi,
This snippet is part of a page load
HyperLink myLink = new HyperLink(); myLink.Text = "test"; myLink.NavigateUrl = "http://www.yahoo.com"; object[] objArray = new object[] { new object[]{myLink, 0}, new object[]{"Q2. Courteousness", 0},
};
Grid1.DataSource = objArray; Grid1.DataBind();
How do I get myLink to render into the grid cell?
Thanks,
Dave
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Hi Dave,
Unfortunately you will not be able to render server controls inside a Grid cell. Sorry about that!
Thanks
|