惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Schneier on Security
博客园_首页
量子位
博客园 - 司徒正美
S
SegmentFault 最新的问题
J
Java Code Geeks
小众软件
小众软件
博客园 - 【当耐特】
The Register - Security
The Register - Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
博客园 - Franky
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
G
GRAHAM CLULEY
Cyberwarzone
Cyberwarzone
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
V
Visual Studio Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Hacker News
The Hacker News
aimingoo的专栏
aimingoo的专栏
V
Vulnerabilities – Threatpost
P
Palo Alto Networks Blog
Scott Helme
Scott Helme
L
LINUX DO - 热门话题
F
Full Disclosure
D
DataBreaches.Net
Martin Fowler
Martin Fowler
Cisco Talos Blog
Cisco Talos Blog
L
LINUX DO - 最新话题
云风的 BLOG
云风的 BLOG
C
Check Point Blog
T
Threatpost
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
W
WeLiveSecurity
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
Lohrmann on Cybersecurity
Last Week in AI
Last Week in AI
T
Tor Project blog
T
Troy Hunt's Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
Security Affairs
SecWiki News
SecWiki News

博客园 - 嘻哈呵嘿

编程实现QQ表情文件CFC格式 使用反射为指定的文件类型创建关联 C#版的端口扫描器(PortScanner) 在asp.net中使用异步同步rss 为FireFox的XMLDocument 增加 LoadXML,SelectNodes,SelectSingleNode方法。 - 嘻哈呵嘿 AJAX实现的购物车,使用Cookie保存。 - 嘻哈呵嘿 - 博客园 AJAX查询域名。:) - 嘻哈呵嘿 - 博客园 FreeTextBox的Toolbars? ZeroForums论坛正式开始测试运行 看看你的PageRank? 不知不觉在网上就拥有了两G的邮局..... 在WinForm中使用Web Services 来实现 软件 自动升级( Auto Update ) (C#) 根据指定Value选定winForm中的ComboBox中的Item 影视频道完工中。 Windows 的 calc 的弱智bug~~~~ 原来老外也喜欢盗版和盗连。呵呵。 Flash的中文输入以有及乱码问题。(已解决) 使用自定义的WebControl来构建简单的WebForm 用xhtml和css构建快速的Web页。
一个小小的实用控件。
嘻哈呵嘿 · 2006-09-25 · via 博客园 - 嘻哈呵嘿

引子:在编写程序的过程中,我们是不是有碰到这样的情况呢?
控件位于Repeater,DataList,DataGrid中,但是我们需要在脚本中引用这个控件的ClientID或者UniqueName,但这时用传统的<%# ctl.ClientID %>会说找不到此控件。

这时候我们需要一个小小的控件:我叫它:BindableLiteral
看代码:

 1using System;
 2using System.Collections.Generic;
 3using System.Text;
 4using System.Web.UI.WebControls;
 5using System.ComponentModel;
 6using System.Web.UI;
 7
 8namespace Limited.Controls
 9{
10    public enum eMode
11    {
12        UniqueName,
13        ClientID,
14    }

15
16    public class BindableLiteral :
17        Literal
18    {
19        [TypeConverter(typeof(ValidatedControlConverter)), IDReferenceProperty, DefaultValue("")]
20        public string BindControl
21        {
22            get
23            {
24                object obj = ViewState["BindControl"];
25                return obj == null ? null : (string)obj;
26            }

27            set
28            {
29                ViewState["BindControl"= value;
30            }

31        }

32
33        public eMode RenderMode
34        {
35            get
36            {
37                object obj = ViewState["RenderMode"];
38                return obj == null ? eMode.ClientID : (eMode)obj;
39            }

40            set
41            {
42                ViewState["RenderMode"= value;
43            }

44        }

45
46        [Browsable(false)]
47        public new string Text
48        {
49            set { }
50        }

51
52        protected override void Render(HtmlTextWriter writer)
53        {
54            if (!string.IsNullOrEmpty(BindControl))
55            {
56                Control ctl = this.NamingContainer.FindControl(BindControl);
57                if (ctl != null)
58                {
59                    if (RenderMode == eMode.ClientID)
60                        writer.Write(ctl.ClientID);
61                    else
62                        writer.Write(ctl.UniqueID);
63                }

64            }

65        }

66    }

67}

68
69

使用方式:
一、注册控件
<%@ Register Assembly="Controls" Namespace="Limited.Controls" TagPrefix="lm" %>

二、使用

 1<asp:Repeater ID="rptPageArticle" runat="server" OnItemCommand="rptPageArticle_ItemCommand">
 2                            <HeaderTemplate>
 3                                <div id="xToolbar" style="overflow: visible; width: 100%; display: none;">
 4                                </div>
 5                            </HeaderTemplate>
 6                            <ItemTemplate>
 7                                &nbsp;<asp:TextBox ID="txtPageContent" runat="server" TextMode="multiLine" Width="96%"
 8                                    Text='<%# DataBinder.Eval(Container.DataItem,"PageContent") %>' />
 9
10                                <script type="text/javascript">
11    var oFCKeditor = new FCKeditor( '<lm:BindableLiteral BindControl="txtPageContent" runat="server" RenderMode="UniqueName" />' ) ;
12    oFCKeditor.ReplaceTextarea() ;    
13                                
</script>
14
15                            </ItemTemplate>
16                        </asp:Repeater>

没什么技术可言,不知道大家平时遇到这种情况是如何处理的。欢迎大家讨论