"SmartNavigation"苗条版ClientNavigation增肥

    原来做的ClientNavigation没有注意只支持保存和恢复页面的scrollTop,今天发现有个应用还需要保存一下scrollLeft,于是就把ClientNavigation增了点肥,支持scrollLeft的save/load了。放在这里算是对SmartNavigation系列文章的update吧。
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace Birdshome.Web.WebControls
{
    
/// <summary>
    
/// Summary description for ClientNavigation.
    
/// </summary>

    [DefaultProperty("Text")]
    [ToolboxData(
"<{0}:ClientNavigation runat=server></{0}:ClientNavigation>")]
    
public class ClientNavigation : WebControl, INamingContainer, IPostBackDataHandler
    
{
        
public ClientNavigation() : base() {}

        
Properties

        
protected override void Render(HtmlTextWriter writer)
        
{
            
this.RegisterClientScript();
            writer.AddAttribute(HtmlTextWriterAttribute.Type, 
"hidden");
            writer.AddAttribute(HtmlTextWriterAttribute.Id, 
this.ClientID);
            writer.AddAttribute(HtmlTextWriterAttribute.Name, 
this.ClientID);
            writer.AddAttribute(HtmlTextWriterAttribute.Value,
                
string.Format("{0}:{1}"this.PositionTop,this.PositionLeft));
            writer.RenderBeginTag(HtmlTextWriterTag.Input);
            writer.RenderEndTag();
        }


        
Client Script

        
IPostBackDataHandler interface
    }

}
    价格公道,童叟无欺,欢迎使用

posted on 2004-12-13 18:53 birdshome 阅读(1860) 评论(4) 编辑 收藏

评论

#1楼  回复 引用   

不錯不錯!可以給小弟發一份嗎?學習學習!
aspx2008@163.com
2005-04-29 08:07 | 極速麻醉

#2楼  回复 引用 查看   

找不到类型或命名空间名称“StringHelper”(是否缺少 using 指令或程序集引用?)
2005-07-15 13:43 | 阿浪      

#3楼[楼主]  回复 引用 查看   

public static bool StringHelper.IsEmpty(string value)
{
    
if ( value == null )
    
{
        
return true;
    }

    
return value.Length == 0;
}
2005-07-15 16:33 | birdshome      

导航

公告

  原创技术文章和心得,转载必须注明来源"博客园"!
  贴子以"现状"提供,且没有任何担保,同时也没有授予任何权利。
昵称:birdshome
园龄:7年10个月
荣誉:推荐博客
粉丝:73
关注:3

搜索

 

常用链接

我的标签

随笔分类(337)

文章分类(147)

相册

Ex-Colleagues

常用链接

兄弟情深

积分与排名

  • 积分 - 3145044
  • 排名 - 6

最新评论

阅读排行榜

推荐排行榜