All Tags » nested (RSS)

Browse Forum Posts by Tags

Showing related tags and posts for the Forums application. See all tags in the site
  • Cannot reference linkbutton in parent repeater.

    in this event "rptEmployees_ItemDataBound" I'm trying to reference this linkbutton "btnDateHeader". This is throwing a null reference exeption... protected void rptEmployees_ItemDataBound(object sender, RepeaterItemEventArgs e) { try { if (e.Item.ItemType == ListItemType.Item...
    Posted to ASP.NET (Forum) by Pat on 05-01-2008
  • Nested Repeaters to look like gridview with total columns

    code behind protected void Bind() { rptTotCommentTypes.DataSource = ResultsWrapper.CommentTypes; rptTotCommentTypes.DataBind(); rptTotEmployees.DataSource = ResultsWrapper.Employees; rptTotEmployees.DataBind(); } protected void rptTotEmployees_ItemDataBound(object sender, RepeaterItemEventArgs e) { if...
    Posted to ASP.NET (Forum) by Pat on 04-28-2008
  • Show and Hide panel with nested gridview inside C# Repeater item

    Code Behind protected void bindRepeater() { rptDays.DataSource = ResultsWrapper.Dates; rptDays.DataBind(); } protected void rptDays_ItemDataBound(object sender, RepeaterItemEventArgs e) { DateTime date = Convert.ToDateTime(e.Item.DataItem); LinkButton btnDateHeader = e.Item.FindControl("btnDateHeader"...
    Posted to ASP.NET (Forum) by Pat on 04-28-2008
Page 1 of 1 (3 items)
Forums to discuss Microsoft ASP.Net Development and SQL
Powered by Community Server (Non-Commercial Edition), by Telligent Systems