LoveToCode
MIS
- Jan 11, 2007
- 51
Hello,
I have a very simple function that binds a dataset to a reapeater. I want to add a link programmaticaly, depending on a condition. Here is the function:
I need to examine the dataset to see if a column called "UserID" equals some value then add link to that particular item.
Ive done some research and found that I can subscribe to an event like this:
But once i have the even handler, I dont know how to look at the dataset, and add the link:
Thank you!
I have a very simple function that binds a dataset to a reapeater. I want to add a link programmaticaly, depending on a condition. Here is the function:
Code:
private void LoadComments()
{
DataSet ds = thisUser.GetAllComments(thisUser.UserId);
rp_Comments.DataSource = ds;
rp_Comments.DataBind();
}
I need to examine the dataset to see if a column called "UserID" equals some value then add link to that particular item.
Ive done some research and found that I can subscribe to an event like this:
Code:
rp_Comments.ItemCreated += new RepeaterItemEventHandler(rp_Comments_ItemCreated);
But once i have the even handler, I dont know how to look at the dataset, and add the link:
Code:
void rp_Comments_ItemCreated(object sender, RepeaterItemEventArgs e)
{
// What do I do now?!?! :O
}
Thank you!