Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 18th, 2010 | Syntax: XML | Size: 0.21 KB | Hits: 80 | Expires: Never
Copy text to clipboard
  1. public static class RepeaterExtentions
  2. {
  3.     public static void DataBind(this Repeater container, object dataSource)
  4.     {
  5.         container.DataSource = dataSource;
  6.         container.DataBind();
  7.     }
  8. }