Update of /cvsroot/yafdotnet/yafsrc/YAF.Controls
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26917/YAF.Controls
Modified Files:
PageLinks.cs
Log Message:
Modified
Index: PageLinks.cs
===================================================================
RCS file: /cvsroot/yafdotnet/yafsrc/YAF.Controls/PageLinks.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PageLinks.cs 26 Jan 2007 12:10:58 -0000 1.1
--- PageLinks.cs 20 Apr 2007 22:15:14 -0000 1.2
***************
*** 9,12 ****
--- 9,17 ----
public class PageLinks : BaseControl
{
+ public void AddLink( string title )
+ {
+ AddLink( title, "" );
+ }
+
public void AddLink(string title,string url)
{
***************
*** 56,69 ****
}
- private void Page_Load(object sender, System.EventArgs e)
- {
- }
-
- override protected void OnInit(EventArgs e)
- {
- this.Load += new System.EventHandler(this.Page_Load);
- base.OnInit(e);
- }
-
protected override void Render(System.Web.UI.HtmlTextWriter writer)
{
--- 61,64 ----
|